contributions/javascript.jqueryui/install/check_preconditions.php
Go to the documentation of this file.00001 <?php 00002 function javascript_jqueryui_check_preconditions() { 00003 $ret = new Status(); 00004 Load::components('systemupdateinstaller'); 00005 $root = Load::get_module_dir('javascript.jqueryui') . 'data/' . Config::get_value(ConfigJQueryUI::VERSION) . '/'; 00006 $ret->merge(SystemUpdateInstaller::copy_to_webroot($root, array('js'), SystemUpdateInstaller::COPY_OVERWRITE)); 00007 $ret->merge(SystemUpdateInstaller::copy_to_webroot($root, array('css'), SystemUpdateInstaller::COPY_NO_REPLACE)); 00008 return $ret; 00009 }