slug = $slug; // Initialize. $this->initialize(); // Actions. add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) ); } /** * Initialize * * This function will initialize the module */ public function initialize() { /* do nothing */ } /** * Load the required dependencies for this module. * * @param string $page Current page. */ public function admin_enqueue_scripts( $page ) { /* do nothing */ } }