'; $this->render_message(); $this->render_title(); parent::display( $tmpl ); echo ''; $app_options = $this->get_app_options(); $app_helper_options = array( ); $global_app_options = array( 'options' => $app_helper_options, 'app' => $app_options, ); wp_localize_script( 'ari-fancy-lightbox-app', 'ARI_APP', $global_app_options ); } public function set_title( $title ) { $this->title = $title; } protected function render_title() { if ( $this->title ) printf( '

%s

', $this->title ); } protected function render_message() { if ( ! Request::exists( 'msg' ) ) return ; $message_type = Request::get_var( 'msg_type', ARIFANCYLIGHTBOX_MESSAGETYPE_NOTICE, 'alpha' ); $message = Request::get_var( 'msg' ); printf( '

%1$s

', $message, $message_type ); } protected function get_app_options() { return null; } }