Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > elementor > > > > core
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
admin | Directory | - | - | |
app | Directory | - | - | |
base | Directory | - | - | |
behaviors | Directory | - | - | |
breakpoints | Directory | - | - | |
common | Directory | - | - | |
database | Directory | - | - | |
debug | Directory | - | - | |
document-types | Directory | - | - | |
dynamic-tags | Directory | - | - | |
editor | Directory | - | - | |
experiments | Directory | - | - | |
files | Directory | - | - | |
frontend | Directory | - | - | |
isolation | Directory | - | - | |
kits | Directory | - | - | |
logger | Directory | - | - | |
page-assets | Directory | - | - | |
responsive | Directory | - | - | |
role-manager | Directory | - | - | |
settings | Directory | - | - | |
upgrade | Directory | - | - | |
utils | Directory | - | - | |
documents-manager.php | File | 20824 bytes | March 17 2025 17:28:54. | |
modules-manager.php | File | 3454 bytes | June 26 2025 14:13:40. | |
wp-api.php | File | 1354 bytes | December 10 2024 19:19:32. |
<?php namespace Elementor\Core; use Elementor\Core\Utils\Collection; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * This class is responsible for the interaction with WordPress Core API. * The main benefit is making it easy to mock in testing * and it can help to create unit tests without the hustle of mocking WordPress itself. */ class Wp_Api { /** * @var Collection */ private $plugins; /** * @return Collection */ public function get_plugins() { if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } if ( ! $this->plugins ) { $this->plugins = new Collection( get_plugins() ); } return $this->plugins; } /** * @return Collection */ public function get_active_plugins() { return $this->get_plugins() ->only( get_option( 'active_plugins' ) ); } /** * @return object|array */ public function plugins_api( $action, $args ) { return plugins_api( $action, $args ); } /** * @return bool */ public function is_plugin_active( $plugin ) { return is_plugin_active( $plugin ); } /** * @return bool|int|null|true */ public function activate_plugin( $plugin ) { return activate_plugin( $plugin ); } public function wp_attachment_is_image( $post = null ) { return wp_attachment_is_image( $post ); } }
SILENT KILLER Tool