{{{
/*
* Returns true if a minimal version of Seagull has been installed.
* @static
* @return boolean
*/
function isMinimalInstall()
{
return is_file(SGL_PATH . '/MINIMAL_INSTALL.txt') ? true : false;
}
}}}
This could probably be improved. It wouldn't surprise me if someone deleted the MINIMUM_INSTALL.txt thinking it's not needed, like README.txt.
Code from SGL.php: http://trac.seagullproject.org/browser/trunk/lib/SGL.php#L383
{{{ /* * Returns true if a minimal version of Seagull has been installed. * @static * @return boolean */ function isMinimalInstall() { return is_file(SGL_PATH . '/MINIMAL_INSTALL.txt') ? true : false; } }}}
This could probably be improved. It wouldn't surprise me if someone deleted the MINIMUM_INSTALL.txt thinking it's not needed, like README.txt.