PATH:
home
/
letacommog
/
camarsac
/
wp-content
/
plugins
/
jet-engine
/
includes
/
base
<?php /** * Base class for module */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } if ( ! class_exists( 'Jet_Engine_Module_Base' ) ) { /** * Define Jet_Engine_Module_Base class */ abstract class Jet_Engine_Module_Base { /** * Module ID * * @return string */ abstract public function module_id(); /** * Module name * * @return string */ abstract public function module_name(); /** * Module init * * @return void */ abstract public function module_init(); /** * Returns detailed information about current module for the dashboard page * @return [type] [description] */ public function get_module_details() { return ''; } /** * Return video embed to showcase module in the admin area */ public function get_video_embed() { return ''; } /** * Returns array links to the module-related resources * * item format: array( * 'label' => 'Link label', * 'url' => 'https://link-url', * 'is_video' => true, * ) * * @return [type] [description] */ public function get_module_links() { return array(); } } }
[+]
..
[-] base-admin-page.php
[edit]
[-] base-module.php
[edit]
[-] base-data.php
[edit]
[-] base-api-endpoint.php
[edit]
[-] base-wp-instance.php
[edit]