Example #1
0
 /**
  * Fetch all cron jobs from the database and save as $this->jobs
  *
  * @return void
  */
 private function all_jobs(\shgysk8zer0\Core\PDO &$pdo)
 {
     return $pdo->fetch_array("SELECT\n\t\t\t\t\t`function`,\n\t\t\t\t\t`arguments`,\n\t\t\t\t\t`frequency`,\n\t\t\t\t\t`last_ran`\n\t\t\t\tFROM `cron`\n\t\t\t\tORDER BY `priority`\n\t\t\t\tASC\n\t\t\t");
 }