PATH:
home
/
lab2454c
/
keebchat.com
/
core
/
apps
/
cpanel
/
sitemap
<?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. @ # @*************************************************************************@ function cl_admin_get_publication_indexes() { global $db; $db = $db->where('target', 'publication'); $db = $db->where('status', 'active'); $db = $db->orderBy('likes_count','DESC'); $db = $db->orderBy('replys_count','DESC'); $db = $db->orderBy('reposts_count','DESC'); $posts = $db->get(T_PUBS, null, array('id')); $data = array(); if (cl_queryset($posts)) { foreach ($posts as $row) { $data[] = cl_link(cl_strf("thread/%d", $row['id'])); } } return $data; } function cl_admin_get_user_indexes() { global $db; $db = $db->where('index_privacy', 'Y'); $db = $db->where('active', '1'); $db = $db->orderBy('followers','DESC'); $db = $db->orderBy('posts','DESC'); $users = $db->get(T_USERS, null, array('username')); $data = array(); if (cl_queryset($users)) { foreach ($users as $row) { $data[] = cl_link(cl_strf("@%s", $row['username'])); } } return $data; }
[+]
..
[-] app_ctrl.php
[edit]