contributions/scheduler/install/install.php
Go to the documentation of this file.00001 <?php 00002 //COpy user controller 00003 function scheduler_install() { 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 }