throw new UnauthorizedException("This API requires login");
}
- $user = defaults($_SERVER, 'PHP_AUTH_USER', '');
- $password = defaults($_SERVER, 'PHP_AUTH_PW', '');
+ $user = $_SERVER['PHP_AUTH_USER'] ?? '';
+ $password = $_SERVER['PHP_AUTH_PW'] ?? '';
// allow "user@server" login (but ignore 'server' part)
$at = strstr($user, "@", true);
if ($method == "*") {
return true;
}
- return (stripos($method, defaults($_SERVER, 'REQUEST_METHOD', 'GET')) !== false);
+ return (stripos($method, $_SERVER['REQUEST_METHOD'] ?? 'GET') !== false);
}
/**
*/
function api_item_get_user(App $a, $item)
{
- $status_user = api_get_user($a, defaults($item, 'author-id', null));
+ $status_user = api_get_user($a, $item['author-id'] ?? null);
$author_user = $status_user;
- $status_user["protected"] = defaults($item, 'private', 0);
+ $status_user["protected"] = $item['private'] ?? 0;
- if (defaults($item, 'thr-parent', '') == defaults($item, 'uri', '')) {
- $owner_user = api_get_user($a, defaults($item, 'owner-id', null));
+ if (($item['thr-parent'] ?? '') == ($item['uri'] ?? '')) {
+ $owner_user = api_get_user($a, $item['owner-id'] ?? null);
} else {
$owner_user = $author_user;
}
unset($_REQUEST["screen_name"]);
unset($_GET["screen_name"]);
- $skip_status = defaults($_REQUEST, 'skip_status', false);
+ $skip_status = $_REQUEST['skip_status'] ?? false;
$user_info = api_get_user($a);
$count = $_REQUEST['count'];
}
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
- $page = (!empty($_REQUEST['page']) ? $_REQUEST['page'] - 1 : 0);
- $start = $page * $count;
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
+ $page = $_REQUEST['page'] ?? 1;
+
+ $start = max(0, ($page - 1) * $count);
+
$params = ['order' => ['id' => true], 'limit' => [$start, $count]];
if (preg_match('/^#(\w+)$/', $searchTerm, $matches) === 1 && isset($matches[1])) {
$searchTerm = $matches[1];
// get last network messages
// params
- $count = defaults($_REQUEST, 'count', 20);
- $page = (!empty($_REQUEST['page']) ? $_REQUEST['page'] - 1 : 0);
- if ($page < 0) {
- $page = 0;
- }
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page']?? 0;
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
$exclude_replies = !empty($_REQUEST['exclude_replies']);
- $conversation_id = defaults($_REQUEST, 'conversation_id', 0);
+ $conversation_id = $_REQUEST['conversation_id'] ?? 0;
- $start = $page * $count;
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `item`.`id` > ?",
api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
// get last network messages
// params
- $count = defaults($_REQUEST, 'count', 20);
- $page = (!empty($_REQUEST['page']) ? $_REQUEST['page'] -1 : 0);
- if ($page < 0) {
- $page = 0;
- }
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
$exclude_replies = (!empty($_REQUEST['exclude_replies']) ? 1 : 0);
- $conversation_id = defaults($_REQUEST, 'conversation_id', 0);
+ $conversation_id = $_REQUEST['conversation_id'] ?? 0;
- $start = $page * $count;
+ $start = max(0, ($page - 1) * $count);
if ($exclude_replies && !$conversation_id) {
$condition = ["`gravity` IN (?, ?) AND `iid` > ? AND NOT `private` AND `wall` AND NOT `user`.`hidewall` AND NOT `author`.`hidden`",
throw new ForbiddenException();
}
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
// pagination
- $count = defaults($_REQUEST, 'count', 20);
- $page = defaults($_REQUEST, 'page', 1);
- if ($page < 1) {
- $page = 1;
- }
- $start = ($page - 1) * $count;
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
+
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = 0 AND `gravity` IN (?, ?) AND `thread`.`iid` > ? AND NOT `private`",
GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
}
// params
- $id = intval(defaults($a->argv, 3, 0));
+ $id = intval($a->argv[3] ?? 0);
if ($id == 0) {
- $id = intval(defaults($_REQUEST, 'id', 0));
+ $id = intval($_REQUEST['id'] ?? 0);
}
// Hotot workaround
if ($id == 0) {
- $id = intval(defaults($a->argv, 4, 0));
+ $id = intval($a->argv[4] ?? 0);
}
Logger::log('API: api_statuses_show: ' . $id);
}
// params
- $id = intval(defaults($a->argv , 3 , 0));
- $since_id = intval(defaults($_REQUEST, 'since_id', 0));
- $max_id = intval(defaults($_REQUEST, 'max_id' , 0));
- $count = intval(defaults($_REQUEST, 'count' , 20));
- $page = intval(defaults($_REQUEST, 'page' , 1)) - 1;
- if ($page < 0) {
- $page = 0;
- }
+ $id = intval($a->argv[3] ?? 0);
+ $since_id = intval($_REQUEST['since_id'] ?? 0);
+ $max_id = intval($_REQUEST['max_id'] ?? 0);
+ $count = intval($_REQUEST['count'] ?? 20);
+ $page = intval($_REQUEST['page'] ?? 1);
- $start = $page * $count;
+ $start = max(0, ($page - 1) * $count);
if ($id == 0) {
- $id = intval(defaults($_REQUEST, 'id', 0));
+ $id = intval($_REQUEST['id'] ?? 0);
}
// Hotot workaround
if ($id == 0) {
- $id = intval(defaults($a->argv, 4, 0));
+ $id = intval($a->argv[4] ?? 0);
}
Logger::info(API_LOG_PREFIX . '{subaction}', ['module' => 'api', 'action' => 'conversation', 'subaction' => 'show', 'id' => $id]);
api_get_user($a);
// params
- $id = intval(defaults($a->argv, 3, 0));
+ $id = intval($a->argv[3] ?? 0);
if ($id == 0) {
- $id = intval(defaults($_REQUEST, 'id', 0));
+ $id = intval($_REQUEST['id'] ?? 0);
}
// Hotot workaround
if ($id == 0) {
- $id = intval(defaults($a->argv, 4, 0));
+ $id = intval($a->argv[4] ?? 0);
}
Logger::log('API: api_statuses_repeat: '.$id);
api_get_user($a);
// params
- $id = intval(defaults($a->argv, 3, 0));
+ $id = intval($a->argv[3] ?? 0);
if ($id == 0) {
- $id = intval(defaults($_REQUEST, 'id', 0));
+ $id = intval($_REQUEST['id'] ?? 0);
}
// Hotot workaround
if ($id == 0) {
- $id = intval(defaults($a->argv, 4, 0));
+ $id = intval($a->argv[4] ?? 0);
}
Logger::log('API: api_statuses_destroy: '.$id);
// get last network messages
// params
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id' , 0);
- $count = defaults($_REQUEST, 'count' , 20);
- $page = defaults($_REQUEST, 'page' , 1);
- if ($page < 1) {
- $page = 1;
- }
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
- $start = ($page - 1) * $count;
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `item`.`id` > ? AND `author-id` != ?
AND `item`.`parent` IN (SELECT `iid` FROM `thread` WHERE `thread`.`uid` = ? AND `thread`.`mention` AND NOT `thread`.`ignored`)",
Logger::DEBUG
);
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
$exclude_replies = !empty($_REQUEST['exclude_replies']);
- $conversation_id = defaults($_REQUEST, 'conversation_id', 0);
+ $conversation_id = $_REQUEST['conversation_id'] ?? 0;
// pagination
- $count = defaults($_REQUEST, 'count', 20);
- $page = defaults($_REQUEST, 'page', 1);
- if ($page < 1) {
- $page = 1;
- }
- $start = ($page - 1) * $count;
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
+
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `item`.`id` > ? AND `item`.`contact-id` = ?",
api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id, $user_info['cid']];
}
$action = str_replace("." . $type, "", $a->argv[$action_argv_id]);
if ($a->argc == $action_argv_id + 2) {
- $itemid = intval(defaults($a->argv, $action_argv_id + 1, 0));
+ $itemid = intval($a->argv[$action_argv_id + 1] ?? 0);
} else {
- $itemid = intval(defaults($_REQUEST, 'id', 0));
+ $itemid = intval($_REQUEST['id'] ?? 0);
}
$item = Item::selectFirstForUser(api_user(), [], ['id' => $itemid, 'uid' => api_user()]);
$ret = [];
} else {
// params
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
- $count = defaults($_GET, 'count', 20);
- $page = (!empty($_REQUEST['page']) ? $_REQUEST['page'] -1 : 0);
- if ($page < 0) {
- $page = 0;
- }
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
+ $count = $_GET['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
- $start = $page*$count;
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `id` > ? AND `starred`",
api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
'sender_id' => $sender['id'],
'text' => "",
'recipient_id' => $recipient['id'],
- 'created_at' => api_date(defaults($item, 'created', DateTimeFormat::utcNow())),
+ 'created_at' => api_date($item['created'] ?? DateTimeFormat::utcNow()),
'sender_screen_name' => $sender['screen_name'],
'recipient_screen_name' => $recipient['screen_name'],
'sender' => $sender,
'recipient' => $recipient,
'title' => "",
- 'friendica_seen' => defaults($item, 'seen', 0),
- 'friendica_parent_uri' => defaults($item, 'parent-uri', ''),
+ 'friendica_seen' => $item['seen'] ?? 0,
+ 'friendica_parent_uri' => $item['parent-uri'] ?? '',
];
// "uid" and "self" are only needed for some internal stuff, so remove it from here
$statustext = trim($statustitle."\n\n".$statusbody);
}
- if ((defaults($item, 'network', Protocol::PHANTOM) == Protocol::FEED) && (mb_strlen($statustext)> 1000)) {
- $statustext = mb_substr($statustext, 0, 1000) . "... \n" . defaults($item, 'plink', '');
+ if ((($item['network'] ?? Protocol::PHANTOM) == Protocol::FEED) && (mb_strlen($statustext)> 1000)) {
+ $statustext = mb_substr($statustext, 0, 1000) . "... \n" . ($item['plink'] ?? '');
}
$statushtml = BBCode::convert(api_clean_attachments($body), false);
}
// feeds without body should contain the link
- if ((defaults($item, 'network', Protocol::PHANTOM) == Protocol::FEED) && (strlen($item['body']) == 0)) {
+ if ((($item['network'] ?? Protocol::PHANTOM) == Protocol::FEED) && (strlen($item['body']) == 0)) {
$statushtml .= BBCode::convert($item['plink']);
}
}
}
- if (strstr(defaults($_SERVER, 'HTTP_USER_AGENT', ''), "AndStatus")) {
+ if (strstr($_SERVER['HTTP_USER_AGENT'] ?? '', 'AndStatus')) {
foreach ($images[0] as $orig) {
$body = str_replace($orig, "", $body);
}
*/
function api_get_entitities(&$text, $bbcode)
{
- $include_entities = strtolower(defaults($_REQUEST, 'include_entities', "false"));
+ $include_entities = strtolower($_REQUEST['include_entities'] ?? 'false');
if ($include_entities != "true") {
preg_match_all("/\[img](.*?)\[\/img\]/ism", $bbcode, $images);
}
// params
- $count = defaults($_REQUEST, 'count', 20);
- $page = (!empty($_REQUEST['page']) ? $_REQUEST['page'] - 1 : 0);
- if ($page < 0) {
- $page = 0;
- }
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $count = $_REQUEST['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
$exclude_replies = (!empty($_REQUEST['exclude_replies']) ? 1 : 0);
- $conversation_id = defaults($_REQUEST, 'conversation_id', 0);
+ $conversation_id = $_REQUEST['conversation_id'] ?? 0;
- $start = $page * $count;
+ $start = max(0, ($page - 1) * $count);
$condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `id` > ? AND `group_member`.`gid` = ?",
api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id, $_REQUEST['list_id']];
}
// pagination
- $count = defaults($_GET, 'count', 20);
- $page = defaults($_GET, 'page', 1);
- if ($page < 1) {
- $page = 1;
- }
- $start = ($page - 1) * $count;
+ $count = $_GET['count'] ?? 20;
+ $page = $_GET['page'] ?? 1;
+
+ $start = max(0, ($page - 1) * $count);
$user_info = api_get_user($a);
api_get_user($a);
- $stringify_ids = defaults($_REQUEST, 'stringify_ids', false);
+ $stringify_ids = $_REQUEST['stringify_ids'] ?? false;
$r = q(
"SELECT `pcontact`.`id` FROM `contact`
// params
$user_info = api_get_user($a);
//required
- $id = defaults($_REQUEST, 'id', 0);
+ $id = $_REQUEST['id'] ?? 0;
// optional
- $parenturi = defaults($_REQUEST, 'friendica_parenturi', "");
+ $parenturi = $_REQUEST['friendica_parenturi'] ?? '';
$verbose = (!empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false");
/// @todo optional parameter 'include_entities' from Twitter API not yet implemented
throw new ForbiddenException();
}
- $contact_id = defaults($_REQUEST, 'user_id');
+ $contact_id = $_REQUEST['user_id'] ?? 0;
if (empty($contact_id)) {
Logger::notice(API_LOG_PREFIX . 'No user_id specified', ['module' => 'api', 'action' => 'friendships_destroy']);
throw new ForbiddenException();
}
// params
- $count = defaults($_GET, 'count', 20);
- $page = defaults($_REQUEST, 'page', 1) - 1;
- if ($page < 0) {
- $page = 0;
- }
+ $count = $_GET['count'] ?? 20;
+ $page = $_REQUEST['page'] ?? 1;
- $since_id = defaults($_REQUEST, 'since_id', 0);
- $max_id = defaults($_REQUEST, 'max_id', 0);
+ $since_id = $_REQUEST['since_id'] ?? 0;
+ $max_id = $_REQUEST['max_id'] ?? 0;
- $user_id = defaults($_REQUEST, 'user_id', '');
- $screen_name = defaults($_REQUEST, 'screen_name', '');
+ $user_id = $_REQUEST['user_id'] ?? '';
+ $screen_name = $_REQUEST['screen_name'] ?? '';
// caller user info
unset($_REQUEST["user_id"]);
$profile_url = $user_info["url"];
// pagination
- $start = $page * $count;
+ $start = max(0, ($page - 1) * $count);
$sql_extra = "";
if ($box=="sentbox") {
$sql_extra = "`mail`.`from-url`='" . DBA::escape($profile_url) . "'";
} elseif ($box == "conversation") {
- $sql_extra = "`mail`.`parent-uri`='" . DBA::escape(defaults($_GET, 'uri', '')) . "'";
+ $sql_extra = "`mail`.`parent-uri`='" . DBA::escape($_GET['uri'] ?? '') . "'";
} elseif ($box == "all") {
$sql_extra = "true";
} elseif ($box == "inbox") {
throw new ForbiddenException();
}
// input params
- $album = defaults($_REQUEST, 'album', "");
+ $album = $_REQUEST['album'] ?? '';
// we do not allow calls without album string
if ($album == "") {
throw new ForbiddenException();
}
// input params
- $album = defaults($_REQUEST, 'album', "");
- $album_new = defaults($_REQUEST, 'album_new', "");
+ $album = $_REQUEST['album'] ?? '';
+ $album_new = $_REQUEST['album_new'] ?? '';
// we do not allow calls without album string
if ($album == "") {
throw new ForbiddenException();
}
// input params
- $photo_id = defaults($_REQUEST, 'photo_id', null);
- $desc = defaults($_REQUEST, 'desc', (array_key_exists('desc', $_REQUEST) ? "" : null)) ; // extra check necessary to distinguish between 'not provided' and 'empty string'
- $album = defaults($_REQUEST, 'album', null);
- $album_new = defaults($_REQUEST, 'album_new', null);
- $allow_cid = defaults($_REQUEST, 'allow_cid', (array_key_exists('allow_cid', $_REQUEST) ? " " : null));
- $deny_cid = defaults($_REQUEST, 'deny_cid' , (array_key_exists('deny_cid' , $_REQUEST) ? " " : null));
- $allow_gid = defaults($_REQUEST, 'allow_gid', (array_key_exists('allow_gid', $_REQUEST) ? " " : null));
- $deny_gid = defaults($_REQUEST, 'deny_gid' , (array_key_exists('deny_gid' , $_REQUEST) ? " " : null));
+ $photo_id = $_REQUEST['photo_id'] ?? null;
+ $desc = $_REQUEST['desc'] ?? null;
+ $album = $_REQUEST['album'] ?? null;
+ $album_new = $_REQUEST['album_new'] ?? null;
+ $allow_cid = $_REQUEST['allow_cid'] ?? null;
+ $deny_cid = $_REQUEST['deny_cid' ] ?? null;
+ $allow_gid = $_REQUEST['allow_gid'] ?? null;
+ $deny_gid = $_REQUEST['deny_gid' ] ?? null;
$visibility = !empty($_REQUEST['visibility']) && $_REQUEST['visibility'] !== "false";
// do several checks on input parameters
}
// input params
- $photo_id = defaults($_REQUEST, 'photo_id', null);
+ $photo_id = $_REQUEST['photo_id'] ?? null;
// do several checks on input parameters
// we do not allow calls without photo id
throw new ForbiddenException();
}
// input params
- $profile_id = defaults($_REQUEST, 'profile_id', 0);
+ $profile_id = $_REQUEST['profile_id'] ?? 0;
// error if image data is missing
if (empty($_FILES['image'])) {
*/
function check_acl_input($acl_string)
{
- if ($acl_string == null || $acl_string == " ") {
+ if (empty($acl_string)) {
return false;
}
+
$contact_not_found = false;
// split <x><y><z> into array of cid's
}
/**
- *
* @param string $mediatype
* @param array $media
* @param string $type
* @throws ImagickException
* @throws InternalServerErrorException
* @throws NotFoundException
+ * @throws UnauthorizedException
*/
function save_media_to_database($mediatype, $media, $type, $album, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $desc, $profile = 0, $visibility = false, $photo_id = null)
{
*/
function api_friendica_remoteauth()
{
- $url = defaults($_GET, 'url', '');
- $c_url = defaults($_GET, 'c_url', '');
+ $url = $_GET['url'] ?? '';
+ $c_url = $_GET['c_url'] ?? '';
if ($url === '' || $c_url === '') {
throw new BadRequestException("Wrong parameters.");
$cid = $contact['id'];
- $dfrn_id = defaults($contact, 'issued-id', $contact['dfrn-id']);
+ $dfrn_id = $contact['issued-id'] ?? $contact['dfrn-id'];
if ($contact['duplex'] && $contact['issued-id']) {
$orig_id = $contact['issued-id'];
*/
function api_clean_plain_items($text)
{
- $include_entities = strtolower(defaults($_REQUEST, 'include_entities', "false"));
+ $include_entities = strtolower($_REQUEST['include_entities'] ?? 'false');
$text = BBCode::cleanPictureLinks($text);
$URLSearchString = "^\[\]";
// params
$user_info = api_get_user($a);
- $gid = defaults($_REQUEST, 'gid', 0);
+ $gid = $_REQUEST['gid'] ?? 0;
$uid = $user_info['uid'];
// get data of the specified group id or all groups if not specified
// params
$user_info = api_get_user($a);
- $gid = defaults($_REQUEST, 'gid', 0);
- $name = defaults($_REQUEST, 'name', "");
+ $gid = $_REQUEST['gid'] ?? 0;
+ $name = $_REQUEST['name'] ?? '';
$uid = $user_info['uid'];
// error if no gid specified
// params
$user_info = api_get_user($a);
- $gid = defaults($_REQUEST, 'list_id', 0);
+ $gid = $_REQUEST['list_id'] ?? 0;
$uid = $user_info['uid'];
// error if no gid specified
// params
$user_info = api_get_user($a);
- $name = defaults($_REQUEST, 'name', "");
+ $name = $_REQUEST['name'] ?? '';
$uid = $user_info['uid'];
$json = json_decode($_POST['json'], true);
$users = $json['user'];
// params
$user_info = api_get_user($a);
- $name = defaults($_REQUEST, 'name', "");
+ $name = $_REQUEST['name'] ?? '';
$uid = $user_info['uid'];
$success = group_create($name, $uid);
// params
$user_info = api_get_user($a);
$uid = $user_info['uid'];
- $gid = defaults($_REQUEST, 'gid', 0);
- $name = defaults($_REQUEST, 'name', "");
+ $gid = $_REQUEST['gid'] ?? 0;
+ $name = $_REQUEST['name'] ?? '';
$json = json_decode($_POST['json'], true);
$users = $json['user'];
// params
$user_info = api_get_user($a);
- $gid = defaults($_REQUEST, 'list_id', 0);
- $name = defaults($_REQUEST, 'name', "");
+ $gid = $_REQUEST['list_id'] ?? 0;
+ $name = $_REQUEST['name'] ?? '';
$uid = $user_info['uid'];
// error if no gid specified
$verb = strtolower($a->argv[3]);
$verb = preg_replace("|\..*$|", "", $verb);
- $id = defaults($_REQUEST, 'id', 0);
+ $id = $_REQUEST['id'] ?? 0;
$res = Item::performLike($id, $verb);
// params
$user_info = api_get_user($a);
$uid = $user_info['uid'];
- $id = defaults($_REQUEST, 'id', 0);
+ $id = $_REQUEST['id'] ?? 0;
// return error if id is zero
if ($id == "") {
// params
$user_info = api_get_user($a);
- $searchstring = defaults($_REQUEST, 'searchstring', "");
+ $searchstring = $_REQUEST['searchstring'] ?? '';
$uid = $user_info['uid'];
// error if no searchstring specified
}
// input params
- $profile_id = defaults($_REQUEST, 'profile_id', 0);
+ $profile_id = $_REQUEST['profile_id'] ?? 0;
// retrieve general information about profiles for user
$multi_profiles = Feature::isEnabled(api_user(), 'multi_profiles');