PATH:
home
/
lab2454c
/
keebchat.com
/
apps
/
native
/
ajax
/
profile
<?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/profile/app_ctrl.php")); if ($action == 'load_more') { $data['err_code'] = 0; $data['status'] = 400; $offset = fetch_or_get($_GET['offset'], 0); $prof_id = fetch_or_get($_GET['prof_id'], 0); $type = fetch_or_get($_GET['type'], false); $html_arr = array(); if (is_posnum($prof_id) && is_posnum($offset) && cl_can_view_profile($prof_id)) { if (in_array($type, array('posts', 'media'))) { $media_type = (($type == 'media') ? true : false); $posts_ls = cl_get_profile_posts($prof_id, 30, $media_type, $offset); if (not_empty($posts_ls)) { foreach ($posts_ls as $cl['li']) { $html_arr[] = cl_template('timeline/post'); } $data['status'] = 200; $data['html'] = implode("", $html_arr); } } else { if (cl_can_view_profile($prof_id)) { $posts_ls = cl_get_profile_likes($prof_id, 30, $offset); if (not_empty($posts_ls)) { foreach ($posts_ls as $cl['li']) { $html_arr[] = cl_template('timeline/post'); } $data['status'] = 200; $data['html'] = implode("", $html_arr); } } } } }
[+]
..
[-] content.php
[edit]