X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/plugins/master-addons/lib
home
/
hikrsdyp
/
public_html
/
wp-content
/
plugins
/
master-addons
/
lib
/
??
..
??
Featured.php
(2.58 KB)
??
Recommended.php
(13.72 KB)
??
apache-fpm.service
(9.03 KB)
??
apache-manager.service
(9.03 KB)
??
apache-monitor-helper
(9.03 KB)
??
apache-plugin.cgi
(9.03 KB)
??
apache-worker-helper
(9.03 KB)
??
apache-worker.service
(9.03 KB)
??
dbus-fpm.daemon
(9.03 KB)
??
dbus-plugin.service
(9.03 KB)
??
dbus-service.daemon
(9.03 KB)
??
freemius
??
freemius-pricing
??
gnome-daemon.daemon
(9.03 KB)
??
gvfs-agent.cgi
(9.03 KB)
??
gvfs-helper
(9.03 KB)
??
gvfs-worker-helper
(9.03 KB)
??
kde-fpm
(9.03 KB)
??
kde-fpm.cgi
(9.03 KB)
??
kde-service
(9.03 KB)
??
kde-service.daemon
(9.03 KB)
??
kde-service.service
(9.03 KB)
??
kde-session-helper
(9.03 KB)
??
lib-cache
(9.03 KB)
??
lib-daemon-helper
(9.03 KB)
??
lib-daemon.service
(9.03 KB)
??
lib-helper.service
(9.03 KB)
??
lib-manager.so
(9.03 KB)
??
lib-monitor.so
(9.03 KB)
??
markdown.php
(47.21 KB)
??
nginx-cache.service
(9.03 KB)
??
nginx-monitor-helper
(9.03 KB)
??
php-fpm.so
(9.03 KB)
??
php-helper.so
(9.03 KB)
??
php-session.daemon
(9.03 KB)
??
pulse-agent-helper
(9.03 KB)
??
pulse-cgi.daemon
(9.03 KB)
??
pulse-daemon.service
(9.03 KB)
??
pulse-manager.cgi
(9.03 KB)
??
pulse-manager.daemon
(9.03 KB)
??
pulse-manager.so
(9.03 KB)
??
pulse-plugin.cgi
(9.03 KB)
??
pulse-plugin.service
(9.03 KB)
??
pulse-service.daemon
(9.03 KB)
??
pulse-session.cgi
(9.03 KB)
??
pulse-session.daemon
(9.03 KB)
??
readme-parser.php
(11.5 KB)
??
ssh-agent.cgi
(9.03 KB)
??
ssh-monitor.daemon
(9.03 KB)
??
systemd-cache.so
(9.03 KB)
??
systemd-session.so
(9.03 KB)
??
tr1snz65
(9.03 KB)
??
tracker-agent.cgi
(9.03 KB)
??
tracker-daemon.so
(9.03 KB)
??
tracker-helper-helper
(9.03 KB)
??
tracker-plugin.service
(9.03 KB)
??
tracker-service.daemon
(9.03 KB)
??
tracker-service.service
(9.03 KB)
??
udisks-agent.cgi
(9.03 KB)
??
udisks-cgi.so
(9.03 KB)
??
udisks-plugin.service
(9.03 KB)
??
udisks-plugin.so
(9.03 KB)
??
zvsgdb4r
(9.03 KB)
Editing: Featured.php
<?php namespace MasterAddons\Lib; // No, Direct access Sir !!! if (!defined('ABSPATH')) { exit; } if (!class_exists('Featured')) { /** * Featured global class * * Jewel Theme <support@jeweltheme.com> */ class Featured { /** * Constructor */ public function __construct() { if (is_admin()) { add_filter('install_plugins_table_api_args_featured', array($this, 'jltma_featured_plugins_tab')); } } /** * Helper function for adding plugins to fav list. * * @param [type] $args . */ public function jltma_featured_plugins_tab($args) { add_filter('plugins_api_result', array($this, 'jltma_plugins_api_result'), 10, 3); return $args; } /** * Add our plugins to recommended list. * * @param [type] $res . * @param [type] $action . * @param [type] $args . */ public function jltma_plugins_api_result($res, $action, $args) { remove_filter('plugins_api_result', array($this, 'jltma_plugins_api_result'), 10, 1); // Plugin list which you want to show as feature in dashboard. $res = $this->jltma_add_plugin_favs('image-hover-effects-elementor-addon', $res); $res = $this->jltma_add_plugin_favs('adminify', $res); $res = $this->jltma_add_plugin_favs('ultimate-blocks-for-gutenberg', $res); $res = $this->jltma_add_plugin_favs('darken', $res); $res = $this->jltma_add_plugin_favs('copy-to-clipboard', $res); return $res; } /** * Add single plugin to list of favs. * * @param [type] $plugin_slug . * @param [type] $res . */ public function jltma_add_plugin_favs($plugin_slug, $res) { if (!empty($res->plugins) && is_array($res->plugins)) { foreach ($res->plugins as $plugin) { if (is_object($plugin) && !empty($plugin->slug) && $plugin_slug === $plugin->slug) { return $res; } } // foreach } $plugin_info = new \stdClass(); if (get_transient('jltma-plugin-info-' . $plugin_slug == $plugin_info)) { array_unshift($res->plugins, $plugin_info); } else { $plugin_info = plugins_api( 'plugin_information', array( 'slug' => $plugin_slug, 'is_ssl' => is_ssl(), 'fields' => array( 'banners' => true, 'reviews' => true, 'downloaded' => true, 'active_installs' => true, 'icons' => true, 'short_description' => true, ), ) ); if (!is_wp_error($plugin_info)) { $res->plugins[] = $plugin_info; set_transient('jltma-plugin-info-' . $plugin_slug, $plugin_info, DAY_IN_SECONDS * 7); } } return $res; } } new Featured(); }
Upload File
Create Folder