Update Notifier
Posted: Tue May 22, 2007 6:22 pm
I may have missed this function... but in case I haven't, here's the idea:
The notification area on the front admin page would be used to show if a new version of CMSms was available, by calling an ini file from the cmsmadesimple server - all it need contain would be a version number for the current version. Then implode the file by '', and check the current installed version against it. Basically,
...you get the idea 
I'm only suggesting it as I've just realised I missed two updates... ah well.
Daniel
The notification area on the front admin page would be used to show if a new version of CMSms was available, by calling an ini file from the cmsmadesimple server - all it need contain would be a version number for the current version. Then implode the file by '', and check the current installed version against it. Basically,
Code: Select all
$version = implode('', file('http://www.cmsmadesimple.org/version.ini'));
if ($CMS_VERSION < $version) {
echo "Your CMSms isn't up to date!";
}

I'm only suggesting it as I've just realised I missed two updates... ah well.
Daniel