CMS  Version 3.9
scheduled_task_upgrade_manager.inc
Go to the documentation of this file.
1 <?php
17 Fakoli::using("scheduled_task", "component");
18 
20 {
21  var $updateMap = array(
22  "1.0" => "sql:Created scheduled_task and scheduled_task_log_entry tables",
23  "1.1" => "sql:Removed next_run field from scheduled_task table",
24  "1.2" => "sql:Increased size of schedule field in scheduled_task table",
25  "1.3" => "sql:Added run_every_hour flag to scheduled_task table"
26  );
27 
29  {
30  $this->component_name = "scheduled_task";
31 
32  // sets the sqlFile name according to default
33  parent::UpgradeManager();
34  }
35 }
36 ?>
static using()
Import the datamodels, views and manifest for the specified component(s).
Definition: core.inc:116