contributions/scheduler/install/install.php File Reference
Go to the source code of this file.
Functions |
|
scheduler_install () |
Function Documentation
scheduler_install | ( | ) |
Definition at line 3 of file install.php.
00003 { 00004 $ret = new Status(); 00005 Load::components('systemupdateinstaller'); 00006 $ret->merge( 00007 SystemUpdateInstaller::copy_file_to_app( 00008 dirname(__FILE__) . '/scheduler.controller.php.example', 00009 'controller/scheduler.controller.php', 00010 SystemUpdateInstaller::COPY_NO_REPLACE 00011 ) 00012 ); 00013 return $ret; 00014 }