| Recommend this page to a friend! | 
|  Download | 
| Info | Example |  Files |  Install with Composer |  Download | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not enough user ratings | Total: 191 | All time:  8,583 This week: 38  | ||||
| Version | License | PHP version | Categories | |||
| jackbooted-framework 12.0 | GNU General Publi... | 5.6 | PHP 5, Libraries | 
| Description | Author | |
| This package is a Web application framework using simplified MVC approach. | 
| 
<?php | 
I have given up on MVC!
I needed a reboot on PHP development!
I needed something that was Jacked for Speed and reduced overhead!
I have done some projects using Laravel and I am not impressed. Oh yes, it is good framework. but OMG the overhead!
JackBooted is yet another framework. * It is PHP rebooted back to it's roots. * It is PHP Jacked in speed, and convenience without the massive overhead. * It is a single page app, or not. Up to you, or mix! * It is OO * It is all of the strength of Laravel without the overhead. * It is MC. So you have models and controllers (WebPage class) that generates HTML. There is a templating, but I rarely need it * It has Object Relational Mapping that makes sense. Use it or access the database directly * It has Helper objects for all common web development operations. * It has Protection from URL/Form Tampering. CSRF protection, Time based tampering. Everything that OWASP teaches us to fear. * It has an autoloader that makes sense. Implements Static initialisation that makes sense. (Called in Autoloader) * It has a CRUD that works with a single statement (CRUD::factory('tblName')->index()). Crud handles Pagination, Sorting * It does migrations. * It deploys easily to cPanel web hosting * It has built in scheduling * Built in User authentication and access levels, and WebPage Access control * Auto-generated Wordpress style configuration if you want it. (Config::get( $key, $default ) ) * It is easy to change and edit.
if you have any interest in this contact me [email protected]
There is a file, scripts/deploy_maxOSX.sh, that will give you all the steps that you need to install the example application. Here are the main steps
WEB_DIR=/Library/WebServer/Documents
INSTALL_DIR=$WEB_DIR/jack
sudo git clone [email protected]:raxisau/JackBooted.git $INSTALL_DIR
sudo chown -R _www:_www $INSTALL_DIR
cd $INSTALL_DIR
sudo php ./jack.php DB:initialize
sudo php ./jack.php DB:migrate
sudo chmod -R a+w _private
sudo chmod -R g+w _private
php ./jack.php JACK:version
You will also need to make sure that you have your httpd.conf correctly set up.
Search for the line
DocumentRoot "/Library/WebServer/Documents"
Replace with
LoadModule php5_module libexec/apache2/libphp5.so
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
DocumentRoot "/Library/WebServer/Documents/jack"
<Directory "/Library/WebServer/Documents/jack">
    Options FollowSymLinks Multiviews
    MultiviewsMatch Any
    AllowOverride All
    Require all granted
</Directory>
example of the site here: http://www.brettdutton.com/jack/index.php u/p: [email protected]/password
|  Files (619) | 
| File | Role | Description | ||
|---|---|---|---|---|
|  app (1 file, 4 directories) | ||||
|  images (6 files) | ||||
|  js (43 files, 1 directory) | ||||
|  scripts (5 files) | ||||
|  vendor (1 directory) | ||||
|  _private (1 file) | ||||
|    .htaccess | Data | Auxiliary data | ||
|    ajax.php | Example | Example script | ||
|    config.default.php | Conf. | Configuration script | ||
|    config.local.php | Conf. | Configuration script | ||
|    config.php | Conf. | Configuration script | ||
|    cron.php | Example | Example script | ||
|    favicon.ico | Data | Auxiliary data | ||
|    index.php | Example | Example script | ||
|    info.php | Aux. | Auxiliary script | ||
|    jack.php | Example | Example script | ||
|    maintenance.php | Aux. | Auxiliary script | ||
|    menu.php | Example | Example script | ||
|    README.md | Data | Auxiliary data | ||
|    router.php | Example | Example script | ||
|    style.css | Data | Auxiliary data | ||
|    styletest.php | Example | Example script | ||
|    superadmin.php | Example | Example script | ||
|  Files (619) | / | app | 
| File | Role | Description | ||
|---|---|---|---|---|
|  api (1 file) | ||||
|  commands (4 files) | ||||
|  controllers (2 files) | ||||
|  models (2 files) | ||||
|    Jack.php | Class | Class source | ||
|  Files (619) | / | app | / | commands | 
| File | Role | Description | 
|---|---|---|
|    CLI.php | Class | Class source | 
|    InstallationCLI.php | Class | Class source | 
|    JackCLI.php | Class | Class source | 
|    MigrationsCLI.php | Class | Class source | 
|  Files (619) | / | app | / | controllers | 
| File | Role | Description | 
|---|---|---|
|    JackConfig.php | Class | Class source | 
|    JackMain.php | Class | Class source | 
|  Files (619) | / | app | / | models | 
| File | Role | Description | 
|---|---|---|
|    Alerts.php | Class | Class source | 
|    AlertsDAO.php | Class | Class source | 
|  Files (619) | / | images | 
| File | Role | Description | 
|---|---|---|
|    AdminLogo.gif | Icon | Icon image | 
|    ajax-bigrotation.gif | Icon | Icon image | 
|    ajax-loader.gif | Icon | Icon image | 
|    JackLogo.gif | Icon | Icon image | 
|    progressbar.gif | Icon | Icon image | 
|    spacer.gif | Icon | Icon image | 
|  Files (619) | / | js | 
| File | Role | Description | ||
|---|---|---|---|---|
|  images (33 files, 2 directories) | ||||
|    bcd.js | Data | Auxiliary data | ||
|    colorbox.css | Data | Auxiliary data | ||
|    facebox.css | Data | Auxiliary data | ||
|    facebox.js | Data | Auxiliary data | ||
|    interface.css | Data | Auxiliary data | ||
|    interface.js | Data | Auxiliary data | ||
|    jquery-1.7.1.min.js | Data | Auxiliary data | ||
|    jquery-1.7.2.min.js | Data | Auxiliary data | ||
|    jquery-1.8.2.min.js | Data | Auxiliary data | ||
|    jquery-1.9.0.min.js | Data | Auxiliary data | ||
|    jquery-2.0.3.min.js | Data | Auxiliary data | ||
|    jquery-2.1.4.min.js | Data | Auxiliary data | ||
|    jquery-ui-timepicker-addon.css | Data | Auxiliary data | ||
|    jquery-ui-timepicker-addon.js | Data | Auxiliary data | ||
|    jquery-ui.css | Data | Auxiliary data | ||
|    jquery-ui.custom.css | Data | Auxiliary data | ||
|    jquery-ui.custom.min.js | Data | Auxiliary data | ||
|    jquery-ui.js | Data | Auxiliary data | ||
|    jquery-ui.min.css | Data | Auxiliary data | ||
|    jquery-ui.min.js | Data | Auxiliary data | ||
|    jquery-ui.structure.css | Data | Auxiliary data | ||
|    jquery-ui.structure.min.css | Data | Auxiliary data | ||
|    jquery-ui.theme.css | Data | Auxiliary data | ||
|    jquery-ui.theme.min.css | Data | Auxiliary data | ||
|    jquery.bubblepopup.css | Data | Auxiliary data | ||
|    jquery.bubblepopup.min.js | Data | Auxiliary data | ||
|    jquery.colorbox-min.js | Data | Auxiliary data | ||
|    jquery.min.js | Data | Auxiliary data | ||
|    jquery.mobile.min.css | Data | Auxiliary data | ||
|    jquery.mobile.min.js | Data | Auxiliary data | ||
|    jquery.mobile.structure.min.css | Data | Auxiliary data | ||
|    jquery.mobile.theme.min.css | Data | Auxiliary data | ||
|    jquery.shiftclick.js | Data | Auxiliary data | ||
|    jquery.tipTip.minified.js | Data | Auxiliary data | ||
|    jQueryRotate.js | Data | Auxiliary data | ||
|    jsoneditor.css | Data | Auxiliary data | ||
|    jsoneditor.js | Data | Auxiliary data | ||
|    phplivex.js | Data | Auxiliary data | ||
|    tipTip.css | Data | Auxiliary data | ||
|    VerbalExpressions.js | Data | Auxiliary data | ||
|    wz_jsgraphics.js | Data | Auxiliary data | ||
|    ZeroClipboard.js | Data | Auxiliary data | ||
|    ZeroClipboard10.swf | Data | Auxiliary data | ||
|  Files (619) | / | js | / | images | 
|  Files (619) | / | js | / | images | / | ie6 | 
| File | Role | Description | 
|---|---|---|
|    borderBottomCenter.png | Icon | Icon image | 
|    borderBottomLeft.png | Icon | Icon image | 
|    borderBottomRight.png | Icon | Icon image | 
|    borderMiddleLeft.png | Icon | Icon image | 
|    borderMiddleRight.png | Icon | Icon image | 
|    borderTopCenter.png | Icon | Icon image | 
|    borderTopLeft.png | Icon | Icon image | 
|    borderTopRight.png | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | 
| File | Role | Description | ||
|---|---|---|---|---|
|  all-azure (12 files, 1 directory) | ||||
|  all-black (12 files, 1 directory) | ||||
|  all-blue (12 files, 1 directory) | ||||
|  all-green (12 files, 1 directory) | ||||
|  all-grey (12 files, 1 directory) | ||||
|  all-orange (12 files, 1 directory) | ||||
|  all-violet (12 files, 1 directory) | ||||
|  all-yellow (12 files, 1 directory) | ||||
|  azure (12 files, 1 directory) | ||||
|  black (12 files, 1 directory) | ||||
|  blue (12 files, 1 directory) | ||||
|  green (12 files, 1 directory) | ||||
|  grey (12 files, 1 directory) | ||||
|  orange (12 files, 1 directory) | ||||
|  violet (12 files, 1 directory) | ||||
|  yellow (12 files, 1 directory) | ||||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-azure | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-azure | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-black | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-black | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-blue | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-blue | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-green | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-green | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-grey | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-grey | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-orange | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-orange | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-violet | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-violet | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-yellow | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | all-yellow | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | azure | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | azure | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | black | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | black | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | blue | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | blue | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | green | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | green | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | grey | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | grey | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | orange | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | orange | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | violet | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | violet | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | yellow | 
| File | Role | Description | ||
|---|---|---|---|---|
|  ie (12 files) | ||||
|    bottom-left.png | Icon | Icon image | ||
|    bottom-middle.png | Icon | Icon image | ||
|    bottom-right.png | Icon | Icon image | ||
|    middle-left.png | Icon | Icon image | ||
|    middle-right.png | Icon | Icon image | ||
|    tail-bottom.png | Icon | Icon image | ||
|    tail-left.png | Icon | Icon image | ||
|    tail-right.png | Icon | Icon image | ||
|    tail-top.png | Icon | Icon image | ||
|    top-left.png | Icon | Icon image | ||
|    top-middle.png | Icon | Icon image | ||
|    top-right.png | Icon | Icon image | ||
|  Files (619) | / | js | / | images | / | jquerybubblepopup-theme | / | yellow | / | ie | 
| File | Role | Description | 
|---|---|---|
|    bottom-left.gif | Icon | Icon image | 
|    bottom-middle.gif | Icon | Icon image | 
|    bottom-right.gif | Icon | Icon image | 
|    middle-left.gif | Icon | Icon image | 
|    middle-right.gif | Icon | Icon image | 
|    tail-bottom.gif | Icon | Icon image | 
|    tail-left.gif | Icon | Icon image | 
|    tail-right.gif | Icon | Icon image | 
|    tail-top.gif | Icon | Icon image | 
|    top-left.gif | Icon | Icon image | 
|    top-middle.gif | Icon | Icon image | 
|    top-right.gif | Icon | Icon image | 
|  Files (619) | / | scripts | 
| File | Role | Description | 
|---|---|---|
|    crontab.txt | Doc. | Documentation | 
|    deploy_macOSX.sh | Data | Auxiliary data | 
|    env.sh | Data | Auxiliary data | 
|    lint.sh | Data | Auxiliary data | 
|    update_codebase.sh | Data | Auxiliary data | 
|  Files (619) | / | vendor | / | jackbooted | 
|  Files (619) | / | vendor | / | jackbooted | / | 3rdparty | 
| File | Role | Description | ||
|---|---|---|---|---|
|  beanstalk (1 file) | ||||
|  font (14 files) | ||||
|  PHPExcelCreator (11 files) | ||||
|  PHPMailer (3 files) | ||||
|    FeedWriter.php | Class | Class source | ||
|    FPDF.php | Class | Class source | ||
|    HTMLGraphs.php | Class | Class source | ||
|    PHPLiveX.php | Class | Class source | ||
|    SiteMap.php | Class | Class source | ||
|    Upload.php | Class | Class source | ||
|    VerbalExpressions.php | Class | Class source | ||
|  Files (619) | / | vendor | / | jackbooted | / | 3rdparty | / | beanstalk | 
| File | Role | Description | 
|---|---|---|
|    Client.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | 3rdparty | / | font | 
| File | Role | Description | 
|---|---|---|
|    courier.php | Class | Class source | 
|    courierb.php | Class | Class source | 
|    courierbi.php | Class | Class source | 
|    courieri.php | Class | Class source | 
|    helvetica.php | Class | Class source | 
|    helveticab.php | Class | Class source | 
|    helveticabi.php | Class | Class source | 
|    helveticai.php | Class | Class source | 
|    symbol.php | Class | Class source | 
|    times.php | Class | Class source | 
|    timesb.php | Class | Class source | 
|    timesbi.php | Class | Class source | 
|    timesi.php | Class | Class source | 
|    zapfdingbats.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | 3rdparty | / | PHPExcelCreator | 
| File | Role | Description | 
|---|---|---|
|    BIFFwriter.php | Class | Class source | 
|    File.php | Class | Class source | 
|    Format.php | Class | Class source | 
|    OLE.php | Class | Class source | 
|    Parser.php | Class | Class source | 
|    PPS.php | Class | Class source | 
|    Root.php | Class | Class source | 
|    Validator.php | Class | Class source | 
|    Workbook.php | Class | Class source | 
|    Worksheet.php | Class | Class source | 
|    Writer.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | 3rdparty | / | PHPMailer | 
| File | Role | Description | 
|---|---|---|
|    class.phpmailer.php | Class | Class source | 
|    class.pop3.php | Class | Class source | 
|    class.smtp.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | admin | 
| File | Role | Description | 
|---|---|---|
|    Admin.php | Class | Class source | 
|    FancyLogin.php | Class | Class source | 
|    ImagePositionLocator.php | Class | Class source | 
|    Login.php | Class | Class source | 
|    SuperAdmin.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | config | 
| File | Role | Description | 
|---|---|---|
|    AdminConfig.php | Class | Class source | 
|    Cfg.php | Class | Class source | 
|    Config.php | Class | Class source | 
|    ConfigManager.php | Class | Class source | 
|    PreferenceLoader.php | Class | Class source | 
|    Preferences.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | cron | 
| File | Role | Description | 
|---|---|---|
|    Cron.php | Class | Class source | 
|    CronDAO.php | Class | Class source | 
|    CronManager.php | Class | Class source | 
|    CronParser.php | Class | Class source | 
|    Scheduler.php | Class | Class source | 
|    SchedulerDAO.php | Class | Class source | 
|    SchedulerManager.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | db | 
| File | Role | Description | 
|---|---|---|
|    DAO.php | Class | Class source | 
|    DB.php | Class | Class source | 
|    DBMaintenance.php | Class | Class source | 
|    DBManager.php | Class | Class source | 
|    DBTable.php | Class | Class source | 
|    MDB.php | Class | Class source | 
|    Migrations.php | Class | Class source | 
|    ORM.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | forms | 
| File | Role | Description | 
|---|---|---|
|    Columnator.php | Class | Class source | 
|    CRUD.php | Class | Class source | 
|    Grid.php | Class | Class source | 
|    Navigator.php | Class | Class source | 
|    Paginator.php | Class | Class source | 
|    PipeLine.php | Class | Class source | 
|    Request.php | Class | Class source | 
|    Response.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | html | 
| File | Role | Description | 
|---|---|---|
|    GoogleChartAPI.php | Class | Class source | 
|    Gravatar.php | Class | Class source | 
|    JS.php | Class | Class source | 
|    Lists.php | Class | Class source | 
|    Tag.php | Class | Class source | 
|    Template.php | Class | Class source | 
|    Validator.php | Class | Class source | 
|    WebPage.php | Class | Class source | 
|    Widget.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | 
| File | Role | Description | 
|---|---|---|
|    GMailSender.php | Class | Class source | 
|    Mailer.php | Class | Class source | 
|    POP3Class.php | Class | Class source | 
|    SMTPSendMail.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | security | 
| File | Role | Description | 
|---|---|---|
|    Captcha.php | Class | Class source | 
|    Cryptography.php | Class | Class source | 
|    CSRFGuard.php | Class | Class source | 
|    Password.php | Class | Class source | 
|    Privileges.php | Class | Class source | 
|    TamperGuard.php | Class | Class source | 
|    TimeGuard.php | Class | Class source | 
|  Files (619) | / | vendor | / | jackbooted | / | util | 
| File | Role | Description | 
|---|---|---|
|    AutoLoader.php | Class | Class source | 
|    ClassLocator.php | Class | Class source | 
|    Cookie.php | Class | Class source | 
|    CSV.php | Class | Class source | 
|    DataCache.php | Class | Class source | 
|    DeployChangeset.php | Class | Class source | 
|    Invocation.php | Class | Class source | 
|    JB.php | Class | Class source | 
|    Log4PHP.php | Class | Class source | 
|    MenuUtils.php | Class | Class source | 
|    Module.php | Class | Class source | 
|    NetworkUtils.php | Class | Class source | 
|    ObjectUtil.php | Class | Class source | 
|    PDFUtil.php | Class | Class source | 
|    PHPExt.php | Class | Class source | 
|    Sess.php | Class | Class source | 
|    StringUtil.php | Class | Class source | 
|    XLS.php | Class | Class source | 
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
|  Install with Composer | 
|  | jackbooted-framework-2016-03-15.zip 1224KB | 
|  | jackbooted-framework-2016-03-15.tar.gz 1005KB | 
|  | Install with Composer | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
 | 
 | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.
 If you know an application of this package, send a message to the author to add a link here.