gyro/modules/tidy/install/check_preconditions.php File Reference
Go to the source code of this file.
Functions |
|
tidy_check_preconditions () |
Function Documentation
tidy_check_preconditions | ( | ) |
Definition at line 2 of file check_preconditions.php.
00002 { 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 }