PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
envato-elements
/
inc
<?php /** * Envato Elements: * * This starts things up. Registers the SPL and starts up some classes. * * @package Envato/Envato_Elements * @since 0.0.2 */ namespace Envato_Elements; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Envato Elements plugin. * * The main plugin handler class is responsible for initializing Envato Elements. The * class registers and all the components required to run the plugin. * * @since 0.0.2 */ class Base { const PAGE_SLUG = ENVATO_ELEMENTS_SLUG; /** * Holds the plugin instance. * * @since 0.0.2 * @access protected * @static * * @var Base */ private static $instances = []; /** * Disable class cloning and throw an error on object clone. * * The whole idea of the singleton design pattern is that there is a single * object. Therefore, we don't want the object to be cloned. * * @access public * @since 0.0.2 */ public function __clone() { // Cloning instances of the class is forbidden. _doing_it_wrong( __FUNCTION__, esc_html__( 'Something went wrong.', 'envato-elements' ), '1.0.0' ); } /** * Disable unserializing of the class. * * @access public * @since 0.0.2 */ public function __wakeup() { // Unserializing instances of the class is forbidden. _doing_it_wrong( __FUNCTION__, esc_html__( 'Something went wrong.', 'envato-elements' ), '1.0.0' ); } /** * Sets up a single instance of the plugin. * * @since 0.0.2 * @access public * @static * * @return static An instance of the class. */ public static function get_instance() { $module = get_called_class(); if ( ! isset( self::$instances[ $module ] ) ) { self::$instances[ $module ] = new $module(); } return self::$instances[ $module ]; } /** * Initializing Envato Elements plugin. * * @since 0.0.2 * @access private */ public function __construct() { add_action( 'init', [ $this, 'init' ], 0 ); } public $content = ''; public $header = ''; /** * Runs in the init WordPress hook and sets everything up. * * @since 0.0.2 * @access public */ public function init() { } public function get_url() { return admin_url( 'admin.php?page=' . self::PAGE_SLUG ); } /** * Render a template * * @param string $default_template_path The path to the template, relative to the plugin's `views` folder * * @return string */ protected function render_template( $default_template_path, $variables = [] ) { do_action( 'elements_render_template_pre', $default_template_path, $this ); $template_path = ENVATO_ELEMENTS_DIR . 'views/' . $default_template_path; $template_path = apply_filters( 'elements_template_path', $template_path ); if ( is_file( $template_path ) ) { ob_start(); extract( $variables ); require $template_path; $template_content = apply_filters( 'elements_template_content', ob_get_clean(), $default_template_path, $template_path, $this ); } else { $template_content = ''; } do_action( 'elements_render_template_post', $default_template_path, $this, $template_path, $template_content ); return $template_content; } /** * Checks current memory limit and sets a new one if required. * * Used during importing to ensure we don't run out of memory on large imports. * * @access public * @since 0.0.9 */ public function check_memory_limit() { $memory_limit = ini_get( 'memory_limit' ); if ( $memory_limit != - 1 ) { $last = $memory_limit[ strlen( $memory_limit ) - 1 ]; $val = rtrim( $memory_limit, $last ); switch ( strtolower( $last ) ) { case 'g': $val *= 1024; case 'm': $val *= 1024; case 'k': $val *= 1024; } if ( $val < ( 1024 * 1024 * 1024 ) ) { @ini_set( 'memory_limit', '512M' ); } } } }
[+]
..
[-] class-notices.php
[edit]
[-] class-deep-photos.php
[edit]
[-] class-section.php
[edit]
[-] class-template.php
[edit]
[-] class-rest.php
[edit]
[-] class-statistics.php
[edit]
[-] class-collection-elementor-blocks.php
[edit]
[-] class-license.php
[edit]
[-] class-notifications.php
[edit]
[-] class-import.php
[edit]
[-] bootstrap.php
[edit]
[-] class-category.php
[edit]
[-] class-collection-photos.php
[edit]
[-] class-collection.php
[edit]
[-] class-elements-api.php
[edit]
[-] class-linker.php
[edit]
[-] class-required-plugin.php
[edit]
[-] class-collection-elementor.php
[edit]
[-] class-plugin.php
[edit]
[-] class-elementor.php
[edit]
[-] class-cpt.php
[edit]
[-] class-api.php
[edit]
[-] class-options.php
[edit]
[-] class-collection-beaver-builder.php
[edit]
[-] class-base.php
[edit]
[-] class-insert.php
[edit]
[-] class-cpt-kits.php
[edit]