code
stringlengths
1
2.01M
language
stringclasses
1 value
<?php /** * CakeFirePHP test case * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @...
PHP
<?php /** * DebugTimer Test Case File * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * ...
PHP
<?php App::uses('DebugMemory', 'DebugKit.Lib'); class DebugMemoryTest extends CakeTestCase { /** * test memory usage * * @return void */ public function testMemoryUsage() { $result = DebugMemory::getCurrent(); $this->assertTrue(is_int($result)); $result = DebugMemory::getPeak(); $this->assertTrue(is_int...
PHP
<?php /** * DebugKit Debugger Test Case File * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright noti...
PHP
<?php App::uses('LogPanel', 'DebugKit.Lib/Panel'); App::uses('Controller', 'Controller'); class LogPanelTest extends CakeTestCase { /** * set up * * @return void */ public function setUp() { parent::setUp(); $this->panel = new LogPanel(); } /** * Test that logging configs are created. * * @return void ...
PHP
<?php App::uses('SqlLogPanel', 'DebugKit.Lib/Panel'); App::uses('Model', 'Model'); App::uses('Controller', 'Controller'); /** * SqlLogPanelTest * * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above c...
PHP
<?php require_once dirname(__FILE__) . DS . 'DebugkitGroupTestCase.php'; /** * View Group Test for debugkit * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License...
PHP
<?php require_once dirname(__FILE__) . DS . 'DebugkitGroupTestCase.php'; /** * View Group Test for debugkit * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License...
PHP
<?php class DebugkitGroupTestCase extends PHPUnit_Framework_TestSuite { public function __construct() { $label = Inflector::humanize(Inflector::underscore(get_class($this))); parent::__construct($label); } public static function getTestFiles($directory = null, $excludes = null) { if (is_array($directory)) {...
PHP
<?php require_once dirname(__FILE__) . DS . 'DebugkitGroupTestCase.php'; /** * AllTestsTest For DebugKit * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License *...
PHP
<?php /** * DebugKit TimedBehavior test case * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright noti...
PHP
<?php /** * DebugKit ToolbarAccess Model Test case * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyrigh...
PHP
<?php /** * Contains methods for Profiling memory usage. * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above co...
PHP
<?php /** * FirePHP Class for CakePHP * * Provides most of the functionality offered by FirePHPCore * Interoperates with FirePHP extension for firefox * * For more information see: http://www.firephp.org/ * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2...
PHP
<?php /** * DebugKit Debugger class. Extends and enhances core * debugger. Adds benchmarking and timing functionality. * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The M...
PHP
<?php /** * Contains methods for Profiling and creating * timers. * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain th...
PHP
<?php /** * Debug Panel * * Base class for debug panels. * * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @copyright Copyright 2005-2010, Cake Software Foundation, I...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * SqlLog Panel * * Provides debug information on the SQL logs and provides links to an ajax explain interface. * * @package cake.debug_kit.panels */ class SqlLogPanel extends DebugPanel { /** * Minimum number of Rows Per Millisecond that must be returned...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Session Panel * * Provides debug information on the Session contents. * * @package cake.debug_kit.panels */ class SessionPanel extends DebugPanel { /** * beforeRender callback * * @param object $controller * @return array */ public function before...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Include Panel * * Provides a list of included files for the current request * * @package cake.debug_kit.panels **/ class IncludePanel extends DebugPanel { /** * The list of plugins within the application * @var <type> */ protected $_pluginPaths = ar...
PHP
<?php App::uses ('DebugPanel', 'DebugKit.Lib'); /** * Environment Panel * * Provides information about your PHP and CakePHP environment to assist with debugging. * * @package cake.debug_kit.panels */ class EnvironmentPanel extends DebugPanel { /** * beforeRender - Get necessary data about environment to...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Request Panel * * Provides debug information on the Current request params. * * @package cake.debug_kit.panels **/ class RequestPanel extends DebugPanel { /** * beforeRender callback - grabs request params * * @return array **/ public function befo...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Timer Panel * * Provides debug information on all timers used in a request. * * @package cake.debug_kit.panels */ class TimerPanel extends DebugPanel { /** * startup - add in necessary helpers * * @return void */ public function startup(Controller ...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Variables Panel * * Provides debug information on the View variables. * * @package cake.debug_kit.panels */ class VariablesPanel extends DebugPanel { /** * beforeRender callback * * @return array */ public function beforeRender(Controller $controll...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * History Panel * * Provides debug information on previous requests. * * @package cake.debug_kit.panels **/ class HistoryPanel extends DebugPanel { /** * Number of history elements to keep * * @var string **/ public $history = 5; /** * Constructor ...
PHP
<?php App::uses('DebugPanel', 'DebugKit.Lib'); /** * Log Panel - Reads log entries made this request. * * @package cake.debug_kit.panels */ class LogPanel extends DebugPanel { /** * Constructor - sets up the log listener. * * @return void */ public function __construct() { parent::__construct(); $e...
PHP
<?php /** * A CakeLog listener which saves having to munge files or other configured loggers. * * @package debug_kit.components */ class DebugKitLogListener implements CakeLogInterface { public $logs = array(); /** * Makes the reverse link needed to get the logs later. * * @return void */ public function _...
PHP
<?php /** * Whitespace shell. Helps find and trim whitespace from files. * * Based on jperras' shell found at http://bin.cakephp.org/view/626544881 * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.o...
PHP
<?php /** * Benchmark Shell. * * Provides basic benchmarking of application requests * functionally similar to Apache AB * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under T...
PHP
<?php /** * DebugKit TimedBehavior * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * ...
PHP
<?php /** * Debug Kit App Model * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @co...
PHP
<?php /** * DebugKit ToolbarAccess Model * * Contains logic for accessing DebugKit specific information. * * PHP versions 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License *...
PHP
<?php /** * Index * * The Front Controller for handling every request * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please...
PHP
<?php /** * Web Access Frontend for TestSuite * * PHP 5 * * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICE...
PHP
<?php App::uses('AppController', 'Controller'); /** * Quotes Controller * * @property Quote $Quote */ class QuotesController extends AppController { /** * index method * * @return void */ public function index() { $this->Quote->recursive = 0; $this->set('quotes', $this->paginate()); } ...
PHP
<?php /** * Application level Controller * * This file is application-wide controller file. You can put all * application-wide controller-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)...
PHP
<?php App::uses('AppController', 'Controller'); /** * Offices Controller * * @property Office $Office */ class OfficesController extends AppController { /** * index method * * @return void */ public function index() { $this->Office->recursive = 0; $this->set('offices', $this->paginate()); ...
PHP
<?php /** * Created by JetBrains PhpStorm. * User: Yankee * Date: 6/05/13 * Time: 6:41 PM * To change this template use File | Settings | File Templates. */ public function view($id = null) { $this->Quote->id = $id; $this->set('quote', $this->Quote->read()); } ?>
PHP
<?php /** * Static content controller. * * This file will render views from views/pages/ * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license ...
PHP
<?php /** * Application level Controller * * This file is application-wide controller file. You can put all * application-wide controller-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)...
PHP
<?php App::uses('AppController', 'Controller'); /** * Interactions Controller * * @property Interaction $Interaction */ class InteractionsController extends AppController { /** * index method * * @return void */ public function index() { $this->Interaction->recursive = 0; $this->set('inter...
PHP
<?php class ContactsController extends Controller { var $components = array('Email'); function send() { if(!empty($this->data)) { $this->Contact->set($this->data); if($this->Contact->validates()) { //NEW EMAIL COMPONENT $Email = new CakeEmail(); //$Email->config('g...
PHP
<?php class EmailComponent extends Object { function email($email, $name, $message) { $f_mail = "name@domain.com"; $f_name = "WebMaster domain.com"; $f_message = "\nName : $name"; // start building the message $f_message .= "\n\nE-mail : $email"; $f_message .= "\n\nMes...
PHP
<?php /** * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must ret...
PHP
<?php /** * AppShell file * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of fil...
PHP
#!/usr/bin/php -q <?php /** * Command-line code generation utility to automate programmer chores. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and l...
PHP
#!/usr/bin/php -q <?php /** * Command-line code generation utility to automate programmer chores. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and l...
PHP
<?php /** * This is core configuration file. * * Use it to configure core behaviour of Cake. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and lice...
PHP
<?php /** * Routes configuration * * In this file, you set up routes to your controllers and their actions. * Routes are very important mechanism that allows you to freely connect * different urls to chosen controllers and their actions (functions). * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http...
PHP
<?php /** * This is the PHP base ACL configuration file. * * Use it to configure access control of your Cake application. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License ...
PHP
;<?php exit() ?> ;/** ; * ACL Configuration ; * ; * ; * PHP 5 ; * ; * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) ; * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) ; * ; * Licensed under The MIT License ; * Redistributions of files must retain the above copyright notice. ...
PHP
<?php /** * This is core configuration file. * * Use it to configure core behavior of Cake. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and licen...
PHP
<?php /** * This is email configuration file. * * Use it to configure email transports of Cake. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full cop...
PHP
<?php /** * This file is loaded automatically by the app/webroot/index.php file after core.php * * This file should load/create any application wide configuration settings, such as * Caching, Logging, loading additional configuration files. * * You should also use this file to include any files that provide globa...
PHP
<?php /** * This is Acl Schema file * * Use it to configure database for ACL * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information,...
PHP
<?php /** * This is i18n Schema file * * Use it to configure database for i18n * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license informatio...
PHP
<?php /** * This is Sessions Schema file * * Use it to configure database for Sessions * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license in...
PHP
<?php /** * Application model for Cake. * * This file is application-wide model file. You can put all * application-wide model-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Lice...
PHP
<?php App::uses('AppModel', 'Model'); /** * Quote Model * * @property Child $Child * @property Expense $Expense * @property Location $Location * @property SpecialRequirment $SpecialRequirment */ class Quote extends AppModel { /** * Primary key field * * @var string */ public $primaryKey = ...
PHP
<?php /** * Application model for Cake. * * This file is application-wide model file. You can put all * application-wide model-related methods here. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Lice...
PHP
<?php App::uses('AppModel', 'Model'); /** * Expense Model * * @property Quote $Quote */ class Expense extends AppModel { /** * Primary key field * * @var string */ public $primaryKey = 'expense'; //The Associations below have been created with all possible keys, those that are not needed c...
PHP
<?php App::uses('AppModel', 'Model'); /** * SpecialRequirment Model * * @property Quote $Quote */ class SpecialRequirment extends AppModel { /** * Use table * * @var mixed False or table name */ public $useTable = 'special_requirment'; /** * Primary key field * * @var string */ publ...
PHP
<?php App::uses('AppModel', 'Model'); /** * Child Model * * @property Quote $Quote */ class Child extends AppModel { /** * Primary key field * * @var string */ public $primaryKey = 'child_id'; /** * Display field * * @var string */ public $displayField = 'name_of_child'; //The...
PHP
<?php App::uses('AppModel', 'Model'); /** * Interaction Model * */ class Interaction extends AppModel { /** * Use table * * @var mixed False or table name */ public $useTable = 'interaction'; /** * Primary key field * * @var string */ public $primaryKey = 'i_id'; var $belongsTo = ar...
PHP
<?php App::uses('AppModel', 'Model'); /** * Office Model * * @property officeInteraction $officeInteraction */ class Office extends AppModel { /** * Use table * * @var mixed False or table name */ public $useTable = 'office'; /** * Primary key field * * @var string */ public $primar...
PHP
<?php App::uses('AppModel', 'Model'); /** * Location Model * * @property Quote $Quote */ class Location extends AppModel { /** * Primary key field * * @var string */ public $primaryKey = 'location_id'; //The Associations below have been created with all possible keys, those that are not ne...
PHP
<?php /** * Requests collector. * * This file collects requests if: * - no mod_rewrite is available or .htaccess files are not supported * - requires App.baseUrl to be uncommented in app/Config/core.php * - app/webroot is not set as a document root. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (h...
PHP
<?php /** * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyrig...
PHP
<?php /** * Scaffold. * * Automatic forms and actions generation for rapid web application development. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyrig...
PHP
<?php /** * A custom view class that is used for themeing * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICEN...
PHP
<?php /** * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyrig...
PHP
<?php /** * Helpers collection is used as a registry for loaded helpers and handles loading * and constructing helper class objects. * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * ...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyrig...
PHP
<?php /** * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the a...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain th...
PHP
<?php /** * Methods for displaying presentation data in the view. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see t...
PHP
<?php /** * Prints a stack trace for an exception * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt ...
PHP
<?php /** * SQL Dump element. Dumps out SQL log information * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LIC...
PHP
<?php /** * Session Helper provides access to the Session in the Views. * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please...
PHP
<?php /** * Text Helper * * Text manipulations: Highlight, excerpt, truncate, strip of links, convert email addresses to mailto: links... * * PHP 5 * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under T...
PHP
<?php /** * Pagination Helper class file. * * Generates pagination links * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the ...
PHP