private function OAuthStoreAnymeta::sql_args in Lingotek Translation 7.4
Same name and namespace in other branches
- 7.7 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::sql_args()
- 7.2 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::sql_args()
- 7.3 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::sql_args()
- 7.5 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::sql_args()
- 7.6 lib/oauth-php/library/store/OAuthStoreAnyMeta.php \OAuthStoreAnymeta::sql_args()
5 calls to OAuthStoreAnymeta::sql_args()
- OAuthStoreAnymeta::query in lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php - * Perform a query, ignore the results * *
- OAuthStoreAnymeta::query_all_assoc in lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php - * Perform a query, ignore the results * *
- OAuthStoreAnymeta::query_one in lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php - * Perform a query, return the first column of the first row * *
- OAuthStoreAnymeta::query_row in lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php - * Perform a query, return the first row * *
- OAuthStoreAnymeta::query_row_assoc in lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php - * Perform a query, return the first row * *
File
- lib/
oauth-php/ library/ store/ OAuthStoreAnyMeta.php, line 249
Class
Code
private function sql_args($args) {
$sql = array_shift($args);
if (count($args) == 1 && is_array($args[0])) {
$args = $args[0];
}
return array(
$sql,
$args,
);
}