PluginProbe
Advanced Views – Display Framework for Gutenberg & Elementor / trunk
Advanced Views – Display Framework for Gutenberg & Elementor vtrunk
3.9.4 3.9.5 3.9.6 3.9.3 3.9.2 3.9.1 3.9.0 3.8.11 3.8.9 1.4.10 1.5.0 1.5.10 1.6.0 1.6.10 1.6.16 1.7.0 1.7.10 1.7.11 1.7.12 1.7.13 1.7.14 1.7.15 1.7.16 1.7.19 1.7.20 All 129 releases
acf-views / acf-views.php

acf-views.php in Advanced Views – Display Framework for Gutenberg & Elementor trunk, at acf-views.php

33 lines 894 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Advanced Views Lite
4 * Plugin URI: https://advanced-views.com/
5 * Description: Display framework with full control over selection and layout. Lightweight and compatible with any theme or page builder.
6 * Version: 3.9.6
7 * Author: WPLake
8 * Author URI: https://advanced-views.com/
9 * Text Domain: acf-views
10 * Domain Path: /lang
11 * License: GPLv2 or later
12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
13 */
14
15 namespace Org\Wplake\Advanced_Views;
16
17 defined( 'ABSPATH' ) || exit;
18
19 use Org\Wplake\Advanced_Views\Plugin\Loaders\Lite\Lite_Plugin_Loader;
20 use Org\Wplake\Advanced_Views\Plugin\Plugin;
21
22 ( function (): void {
23 // omit loading if the Pro version is already loaded.
24 if ( class_exists( Plugin::class ) ) {
25 return;
26 }
27
28 require_once __DIR__ . '/src/autoloader.php';
29
30 $plugin_loader = new Lite_Plugin_Loader( __FILE__ );
31 $plugin_loader->load();
32 } )();
33