PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
envato-elements
/
inc
<?php /** * Envato Elements: Bootstrap File * * 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. } spl_autoload_register( function ( $class ) { $prefix = __NAMESPACE__; $base_dir = __DIR__; $len = strlen( $prefix ); if ( strncmp( $prefix, $class, $len ) !== 0 || $class === $prefix ) { return; } $relative_class = strtolower( substr( $class, $len + 1 ) ); $relative_class = 'class-' . $relative_class; $file = $base_dir . DIRECTORY_SEPARATOR . str_replace( [ '\\', '_' ], [ '/', '-' ], $relative_class ) . '.php'; if ( file_exists( $file ) ) { require $file; } else { die( esc_html( basename( $file ) . ' missing.' ) ); } } ); if ( ! defined( 'ENVATO_ELEMENTS_TESTS' ) ) { // In tests we run the instance manually. Plugin::get_instance(); CPT_Kits::get_instance(); Collection::get_instance(); License::get_instance(); Elementor::get_instance(); REST::get_instance(); Statistics::get_instance(); Section::get_instance(); Collection_Photos::get_instance(); Deep_Photos::get_instance(); }
[+]
..
[-] 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]