gyro/modules/tidy/install/check_preconditions.php
Go to the documentation of this file.00001 <?php 00002 function tidy_check_preconditions() { 00003 $ret = new Status(); 00004 if (!function_exists('tidy_parse_string')) { 00005 $ret->append('Tidy is not install, please install the tidy PECL extension: http://pecl.php.net/package/tidy'); 00006 } 00007 return $ret; 00008 }