I know you all hate me already...
In designing or beginning building of version 2.0 my primary intentions have changed...
1) Use a database (adodb) to store article content
2) Use LDAP for authentication/group details
3) Allow CMS to be used on many domains using single centralized installation
4) Use mod_rewrite to redirect web page requests, etc...
5) Use Smarty to generate views
Code: Select all
$res = _select_article($_GET['idx']); // Pull article title, content, etc...
$smarty->assign('title', $res['title']);
$smarty->assign('body', $res['body']);
echo $smarty->fetch('tmpl/default.tpl');How would you propose integrating advanced functionality into the CMS such as a realty listing module???
Hacking the realty module into the index.php is an option, albeit not a very good one...
What do you think?
What are some features, suggestions, etc you would have for a CMS???