示例#1
0
 function __construct($single = false)
 {
     $this->mType = 'multidelete';
     $this->mVisible = false;
     //we don't show form for this, it already exists
     parent::__construct();
 }
 function __construct()
 {
     $this->mType = 'pagegrabberdump';
     $this->mVisible = true;
     parent::__construct();
     $this->mDebug = true;
 }
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     $this->mType = "renameuser_global";
     $this->mVisible = true;
     parent::__construct();
     $this->mDebug = false;
 }
示例#4
0
 /**
  * __construct
  *
  * constructor
  *
  * @access public
  */
 function __construct()
 {
     $this->mType = 'imageimporter';
     $this->mVisible = true;
     parent::__construct();
     #--- debugging
     $this->mDebug = true;
 }
示例#5
0
 /**
  * contructor
  */
 function __construct()
 {
     $this->mType = 'SWMSendToGroup';
     $this->mVisible = false;
     $this->mTTL = 60 * 60 * 12;
     #--- 12 hours
     parent::__construct();
 }
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     $this->mType = 'wallcopyfollows';
     $this->mVisible = true;
     $this->mTTL = self::TTL;
     parent::__construct();
     $this->mDebug = false;
 }
示例#7
0
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     $this->mType = "blog";
     $this->mVisible = false;
     $this->mTTL = 1800;
     parent::__construct();
     $this->mDebug = true;
 }
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     $this->mType = "renameuser_local";
     $this->mVisible = true;
     $this->mTTL = self::TTL;
     parent::__construct();
     $this->mDebug = false;
 }
示例#9
0
 /**
  * contructor
  */
 function __construct()
 {
     $this->mType = 'SWMSendToGroup';
     $this->mVisible = false;
     $this->mTTL = 3600;
     #--- one hour
     parent::__construct();
 }
示例#10
0
 function __construct($single = false)
 {
     $this->mType = 'multirestore';
     $this->mVisible = false;
     //we don't show form for this, it already exists
     $this->mSingle = $single;
     //single wiki or not (need that for a reason)
     parent::__construct();
 }
示例#11
0
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->mType = "local-maintenance";
     $this->mVisible = false;
     $this->mTTL = 1800;
     $this->mDebug = false;
     $this->mUseTemplate = false;
 }
示例#12
0
 function __construct($params = array())
 {
     $this->mType = 'multiwikiedit';
     $this->mVisible = false;
     //we don't show form for this, it already exists
     $this->mParams = $params;
     $this->mTTL = 60 * 60 * 24;
     // 24 hours
     parent::__construct();
 }
示例#13
0
 function __construct($params = array())
 {
     $this->mType = 'multidelete';
     $this->mVisible = false;
     //we don't show form for this, it already exists
     $this->mParams = $params;
     $this->mTTL = 60 * 60 * 24;
     // 5 hours
     $this->records = 1000;
     parent::__construct();
 }
示例#14
0
 function __construct($params = array())
 {
     $this->mType = 'imagereview';
     $this->mVisible = false;
     // do not show form for this task
     $this->mParams = $params;
     $this->mTTL = 86400;
     // 24 hours
     $this->records = 1000;
     // TODO: needed?
     parent::__construct();
 }
 function __construct($params = array())
 {
     $this->mType = 'promoteimagereview';
     $this->mVisible = false;
     // do not show form for this task
     $this->mParams = $params;
     $this->mTTL = 86400;
     // 24 hours
     $this->records = 1000;
     // TODO: needed?
     $this->initializeSkippedWikiList();
     parent::__construct();
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct()
 {
     $this->mType = "rebuild_localisation_cache";
     $this->mVisible = true;
     parent::__construct();
 }
示例#17
0
 /**
  * contructor
  */
 function __construct()
 {
     $this->mType = "closewiki";
     $this->mVisible = true;
     parent::__construct();
 }
示例#18
0
 /**
  * contructor
  *
  * @access public
  * @author eloy
  *
  * @return RemoveWikiTask object
  */
 public function __construct()
 {
     $this->mType = "removewiki";
     $this->mVisible = true;
     parent::__construct();
 }
示例#19
0
 function __construct()
 {
     $this->mType = 'pagegrabber';
     $this->mVisible = true;
     parent::__construct();
 }
 public function __construct()
 {
     $this->mType = "userrollback";
     $this->mVisible = true;
     parent::__construct();
 }
示例#21
0
 /**
  * contructor
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->mType = "welcome";
     $this->mVisible = false;
     $this->mTTL = 1800;
     $this->mDebug = false;
 }
 /**
  * Contructor
  * 
  * @access public
  */
 public function __construct()
 {
     $this->mType = "update_special_pages";
     $this->mVisible = true;
     parent::__construct();
 }