contributions/binaries/install/install.php
Go to the documentation of this file.00001 <?php 00002 //Copy controller 00003 function binaries_install() { 00004 $ret = new Status(); 00005 Load::components('systemupdateinstaller'); 00006 $ret->merge( 00007 SystemUpdateInstaller::copy_file_to_app( 00008 dirname(__FILE__) . '/binaries.controller.php.example', 00009 'controller/binaries.controller.php', 00010 SystemUpdateInstaller::COPY_NO_REPLACE 00011 ) 00012 ); 00013 return $ret; 00014 }