A collection of commonly used JS, CSS and techniques for web development.
- Drop Dead easy CMS
- NO MVC frameworks
- NO template engines
- Plug and Play any website template
- Easily create "template blocks"
- Fully automated "Pretty URLs"
- Textile and Markdown support
- FAQ controller
- Testimonial controller
- Photo Gallery controller
- Contact Form controller
- Paypal controller
- Mailchimp controller
- Automated Backups
Configuring The Developer's Toolbox for your web site is straight forward!
- Update the configuration file
- Setup your database
- Plug and Play your web site templates
Your LOCAL, STAGING and PRODUCTION environments can be configured from "lib/core/class.config.php" :
private $productionServers = array('/^example\.com$/','/www.example\.com$/');
private $stagingServers = array('/^stage.neveranullmoment\.com$/');
private $localServers = array('/^devbox\.dev$/');
From here, you can then update the MySQL read/write username and password combinations :
$this->dbReadHost = 'localhost';
$this->dbWriteHost = 'localhost';
$this->dbName = '';
$this->dbReadUsername = '';
$this->dbWriteUsername = '';
$this->dbReadPassword = '';
$this->dbWritePassword = '';
$this->dbOnError = 'die';
$this->dbEmailOnError = false;
coming soon
coming soon
coming soon
coming soon
coming soon
coming soon
- Simple PHP Framework Library (https://github.com/tylerhall/simple-php-framework)
- Twitter bootstrap CSS (https://github.com/twitter/bootstrap)
- Mailchimp API contact form sample (http://mailchimp.com)
- jQuery (http://jquery.com/)
- Colorbox (http://colorpowered.com/colorbox/)
- prettyPhoto (http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/)
- Cufon (http://cufon.shoqolate.com/generate/)
- reset CSS (inspired by http://meyerweb.com/eric/tools/css/reset/)
- Aloha Editor (http://www.aloha-editor.org/)
- Minify (http://code.google.com/p/minify/)
- Picmeleo (http://www.picmeleo.com/)
The Developers Toolbox is released under the General Public License (GPL) scheme. It is an Open Source project, so everybody is welcome to contribute with plugins, patches, bug reports, tutorials, documentation, and artwork.