Example #1
0
 function __construct($core, $checker_params = NULL, $fetch_page_properties = NULL)
 {
     if (is_null($fetch_page_properties)) {
         $fetch_file_properties = array('imageinfo' => array('prop' => $core->info->param_querymodule_parameter_type('prop', 'imageinfo')));
     }
     parent::__construct($core, $checker_params);
     $this->file_autofetcher = new Autofetcher_File($core, "Filter " . $this->signal_log_slot_name(), array($this, "autofetcher_check"), $fetch_file_properties);
 }
Example #2
0
 function __construct($core)
 {
     parent::__construct($core, NULL);
     $this->checker = $this->checker(NULL);
 }
Example #3
0
 function __construct($core, $checker_params = NULL, $fetch_page_properties = NULL)
 {
     parent::__construct($core, $checker_params);
     $this->page_autofetcher = new Autofetcher_Page($core, "Filter " . $this->signal_log_slot_name(), array($this, "autofetcher_check"), $fetch_page_properties);
 }
Example #4
0
 function __construct($core, $checker_params)
 {
     $this->user_autofetcher = new Autofetcher_User($core, "Filter " . $this->signal_log_slot_name(), array($this, "autofetcher_check"));
     parent::__construct($core, $checker_params);
 }
Example #5
0
 function __construct($core, $storage)
 {
     parent::__construct($core, NULL);
     $this->storage = $storage;
 }