gyro/modules/staticmainpage/install/install.php
Go to the documentation of this file.00001 <?php 00002 function staticmainpage_install() { 00003 $ret = new Status(); 00004 Load::components('systemupdateinstaller'); 00005 00006 $root = Load::get_module_dir('staticmainpage') . 'view/templates/default/'; 00007 $ret->merge(SystemUpdateInstaller::copy_to_app('view/templates/default/', $root, array('index.tpl.php'), SystemUpdateInstaller::COPY_NO_REPLACE)); 00008 return $ret; 00009 }