Add Project-Pro Blog module with initial SQL setup, CSS styles, and template files
- Created SQL installation scripts for categories and posts tables. - Added uninstall scripts to drop the created tables. - Introduced CSS styles for blog layout, including responsive design for posts and categories. - Implemented PHP redirection in index files to prevent direct access. - Developed Smarty templates for blog category tree, post list, and individual post details. - Ensured proper caching headers in PHP files to enhance performance.
This commit is contained in:
5
modules/projectproblog/sql/uninstall.sql
Normal file
5
modules/projectproblog/sql/uninstall.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
DROP TABLE IF EXISTS `PREFIX_projectproblog_post_category`;
|
||||
DROP TABLE IF EXISTS `PREFIX_projectproblog_post_lang`;
|
||||
DROP TABLE IF EXISTS `PREFIX_projectproblog_post`;
|
||||
DROP TABLE IF EXISTS `PREFIX_projectproblog_category_lang`;
|
||||
DROP TABLE IF EXISTS `PREFIX_projectproblog_category`;
|
||||
Reference in New Issue
Block a user