示例#1
0
文件: sync.php 项目: rodhoff/MNW
 public function __construct()
 {
     parent::__construct();
     // Register Extra tasks
     $this->registerTask('add', 'sync');
     $this->registerTask('backup', 'sync');
 }
示例#2
0
文件: templates.php 项目: rodhoff/MNW
 public function __construct()
 {
     parent::__construct();
     // Register Extra tasks
     $this->registerTask('add', 'upload');
     $this->registerTask('start_upload', 'start_upload');
 }
示例#3
0
文件: send.php 项目: rodhoff/MNW
 public function __construct()
 {
     parent::__construct();
 }
示例#4
0
文件: campaigns.php 项目: rodhoff/MNW
 public function __construct($config = array())
 {
     parent::__construct($config);
 }
示例#5
0
 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->registerTask('add', 'edit');
 }
示例#6
0
文件: lists.php 项目: rodhoff/MNW
 public function __construct()
 {
     parent::__construct();
     $this->registerTask('add', 'edit');
 }
示例#7
0
文件: create.php 项目: rodhoff/MNW
 public function __construct()
 {
     parent::__construct();
     $this->registerTask('add', 'send');
     $this->db = JFactory::getDBO();
 }