PATH:
home
/
lab2454c
/
keebchat.com
/
core
/
apps
/
cpanel
/
themes
<?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_themes() { $theme_dirs = glob(cl_full_path("themes/*"), GLOB_ONLYDIR); $theme_list = array(); if (is_array($theme_dirs)) { foreach ($theme_dirs as $dir_path) { $theme_info = file_get_contents(cl_strf("%s/info.json", $dir_path)); $theme_info = json($theme_info); array_push($theme_list, $theme_info); } } return $theme_list; }
[+]
..
[-] app_ctrl.php
[edit]