public function __construct()
 {
     $this->properties = Core\Dipo_Property_List::get_instance();
     $this->view = new Dipo_Admin_Manager_View();
     $this->model = new Dipo_Admin_Manager_Model();
     $this->register_admin_hooks();
 }
 public function __construct($model)
 {
     $this->properties = \Dicentis\Core\Dipo_Property_List::get_instance();
     $this->textdomain = $this->properties->get('textdomain');
     $this->register_hooks();
     $this->model = $model;
 }
 public function __construct()
 {
     $this->properties = \Dicentis\Core\Dipo_Property_List::get_instance();
     $this->textdomain = $this->properties->get('textdomain');
     $rss_model = new \Dicentis\Podcast_Post_Type\Dipo_Episode_Model();
     $this->view = new Dipo_Single_Page_View($rss_model);
     $this->register_hooks();
 }
 public function __construct()
 {
     $this->view = new Dipo_Settings_View($this);
     $this->model = new Dipo_Settings_Model($this);
     $this->properties = Core\Dipo_Property_List::get_instance();
     $this->textdomain = $this->properties->get('textdomain');
     $this->register_settings_hooks();
 }
 public function __construct()
 {
     $this->properties = Core\Dipo_Property_List::get_instance();
     $this->textdomain = $this->properties->get('textdomain');
     $this->register_podcast_hooks();
     $this->include_dependencies();
     // setup new tables by simple-term-meta
     // used for additional meta data in podcast_show taxonomy
     simple_term_meta_install();
 }
 public function __construct()
 {
     $this->properties = Core\Dipo_Property_List::get_instance();
     $this->textdomain = $this->properties->get('textdomain');
 }
Пример #7
0
 public function __construct()
 {
     $this->properties = Core\Dipo_Property_List::get_instance();
 }
 /**
  * Constructor loads dependencies and registers hooks.
  *
  * @see Dicentis_Podcast::load_dependencies()   instantiates necessary
  *                                              objects
  * @see Dicentis_Podcast::register_hooks()      registers important hooks
  */
 public function __construct()
 {
     $this->dipo_properties = Core\Dipo_Property_List::get_instance();
     $this->load_dependencies();
     $this->register_hooks();
 }
 public function __construct()
 {
     $this->model = new Dipo_RSS_Model();
     $this->view = new Dipo_RSS_View();
     $this->properties = Core\Dipo_Property_List::get_instance();
 }