<?php
 
//In this example we load and run the task "HelloWorld"
 
 
//Include the task manager into our program
 
require_once("./taskmanager/container.php");
 
 
//Initialize the Manager
 
$manager=new TaskManager();
 
 
//Load the task "HelloWorld"
 
$manager->add_task(new HelloWorld());
 
 
//Make sure there are tasks present
 
if($manager->check_tasks()){
 
    //Run all loaded tasks
 
    $manager->run();
 
}
 
?>
 
 
 |