| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/Plugin/DebugKit/Model/Behavior/ |
Upload File : |
<?php
/**
* 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.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package DebugKit.Model.Behavior
* @since DebugKit 1.3
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
App::uses('DebugKitDebugger', 'DebugKit.Lib');
/**
* Class TimedBehavior
*
* @package DebugKit.Model.Behavior
* @since DebugKit 1.3
*/
class TimedBehavior extends ModelBehavior {
/**
* Behavior settings
*
* @var array
*/
public $settings = array();
/**
* Default setting values
*
* @var array
*/
protected $_defaults = array();
/**
* Setup the behavior and import required classes.
*
* @param \Model|object $Model Model using the behavior
* @param array $settings Settings to override for model.
* @return void
*/
public function setup(Model $Model, $settings = null) {
if (is_array($settings)) {
$this->settings[$Model->alias] = array_merge($this->_defaults, $settings);
} else {
$this->settings[$Model->alias] = $this->_defaults;
}
}
/**
* beforeFind, starts a timer for a find operation.
*
* @param Model $Model
* @param array $queryData Array of query data (not modified)
* @return boolean true
*/
public function beforeFind(Model $Model, $queryData) {
DebugKitDebugger::startTimer($Model->alias . '_find', $Model->alias . '->find()');
return true;
}
/**
* afterFind, stops a timer for a find operation.
*
* @param Model $Model
* @param array $results Array of results
* @param $primary
* @return boolean true.
*/
public function afterFind(Model $Model, $results, $primary = false) {
DebugKitDebugger::stopTimer($Model->alias . '_find');
return true;
}
/**
* beforeSave, starts a time before a save is initiated.
*
* @param Model $Model
* @param array $options
* @return boolean true
*/
public function beforeSave(Model $Model, $options = array()) {
DebugKitDebugger::startTimer($Model->alias . '_save', $Model->alias . '->save()');
return true;
}
/**
* afterSave, stop the timer started from a save.
*
* @param \Model $Model
* @param string $created
* @return boolean Always true
*/
public function afterSave(Model $Model, $created) {
DebugKitDebugger::stopTimer($Model->alias . '_save');
return true;
}
}