Menu

1. Requirement
2. Installation
3. Rules
4. Themes
5. Plugins
        1. Backend Plugins
        2. Frontend Plugins
6. Variables
7. Commands
8. Ajax
9. Component Dbug
10. Component Query builder
11. Extend Backend


View the Project on GitHub

RULES

Directory structure

Database

Your table must respect these minimal rules :

CREATE TABLE `MyTable`
(
	`ID` INT UNSIGNED NOT NULL AUTO_INCREMENT,
	`Col1` VARCHAR(255) NULL,  
	`Deleted` ENUM('YES','NO') NOT NULL DEFAULT 'NO', 
	PRIMARY KEY (`ID`), 
	INDEX `Deleted` (`Deleted`)
);