-= Структура папок =- trunk/site/App/News ├ AbstractObj.php ├ AdminObj.php ├ AdminView.php ├ Obj.php └ View.php -------------------------------------------------------------------- trunk/site/tpl/News ├─ Admin │ └ cells │ └ item.tpl ├ featured-list.tpl ├ list.tpl ├ small-list.tpl └ view.tpl -------------------------------------------------------------------- trunk/www/css ├ admin-news.css └ site-news.css -------------------------------------------------------------------- -= Зміни до sitemap.xml =- -= Зміни до DB =- CREATE TABLE IF NOT EXISTS `qs_News` ( `id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL, `date` date NOT NULL, `introduction` text NOT NULL, `content` text NOT NULL, `image` varchar(255) default NULL, `linkType` enum('none','url','cms','file') NOT NULL, `idPage` int(11) NOT NULL, `url` varchar(255) NOT NULL, `file` varchar(255) default NULL, `featured` enum('n','y') NOT NULL, `added` datetime NOT NULL, `changed` datetime NOT NULL, PRIMARY KEY (`id`), KEY `type` (`date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; INSERT INTO `qs_zz_DPageItemType` (`id`, `type`, `title`, `sorter`) VALUES (NULL , 'News_', 'News List', '3');