contributions/models.contact/install/check_postconditions.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Copy controller implementation to app dir 00004 * 00005 * @return Status 00006 */ 00007 function models_contact_check_postconditions() { 00008 $ret = new Status(); 00009 Load::components('systemupdateinstaller'); 00010 $ret->merge(SystemUpdateInstaller::copy_to_app( 00011 '', 00012 dirname(__FILE__) . '/../data/', 00013 'controller', 00014 SystemUpdateInstaller::COPY_NO_REPLACE 00015 )); 00016 return $ret; 00017 }