PATH:
home
/
lab2454c
/
keebchat.com
/
apps
/
native
/
api
/
search_people
<?php # @*************************************************************************@ # @ @author Mansur Altamirov (Mansur_TL) @ # @ @author_url 1: https://www.instagram.com/mansur_tl @ # @ @author_url 2: http://codecanyon.net/user/mansur_tl @ # @ @author_email: highexpresstore@gmail.com @ # @*************************************************************************@ # @ ColibriSM - The Ultimate Modern Social Media Sharing Platform @ # @ Copyright (c) 21.03.2020 ColibriSM. All rights reserved. @ # @*************************************************************************@ require_once(cl_full_path("core/apps/search/app_ctrl.php")); $query = fetch_or_get($_GET['query'], null); $offset = fetch_or_get($_GET['offset'], null); $offset = (is_posnum($offset)) ? $offset : null; $limit = fetch_or_get($_GET['page_size'], null); $limit = (is_posnum($limit)) ? $limit: null; if (empty($query) || is_string($query) != true || len_between($query, 1, 32) != true) { $data['code'] = 400; $data['message'] = "The search term is invalid or missing"; $data['data'] = array(); } else { $people_ls = cl_search_people(cl_text_secure($query), $offset, $limit); if (not_empty($people_ls)) { $data['code'] = 200; $data['message'] = "Results found"; $data['data'] = $people_ls; } else { $data['code'] = 204; $data['message'] = "No data found"; $data['data'] = array(); } }
[+]
..
[-] content.php
[edit]