PluginProbe
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools / trunk
Pixelavo – Server Side Tracking & Pixel + AI Ads Tools vtrunk
1.5.5 1.5.4 trunk 1.0.0 1.0.1 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 All 47 releases
pixelavo / admin / admin-setting.php

admin-setting.php in Pixelavo – Server Side Tracking & Pixel + AI Ads Tools trunk, at admin/admin-setting.php

33 lines 643 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly.
4
5 require_once( PIXELAVO_PL_PATH.'admin/settings-panel/settings-panel.php' );
6
7 class Pixelavo_Admin_Settings{
8
9 /**
10 * [$_instance]
11 * @var null
12 */
13 private static $_instance = null;
14
15 /**
16 * [instance] Initializes a singleton instance
17 * @return [Base]
18 */
19 public static function instance() {
20 if ( is_null( self::$_instance ) ) {
21 self::$_instance = new self();
22 }
23 return self::$_instance;
24 }
25
26
27 function __construct(){
28 Pixelavo_Settings_Base::init();
29 }
30
31 }
32
33 Pixelavo_Admin_Settings::instance();