2005-07-02 22:49:04 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-06-21 23:44:49 +00:00
|
|
|
|
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Methods for displaying presentation data in the view.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-05-26 05:29:17 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @filesource
|
2006-05-26 05:29:17 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
2005-06-21 23:44:49 +00:00
|
|
|
|
2005-08-21 06:49:02 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Included libraries.
|
|
|
|
*/
|
2006-11-25 09:27:13 +00:00
|
|
|
uses ('view' . DS . 'helper', 'class_registry');
|
2005-07-02 22:49:04 +00:00
|
|
|
|
|
|
|
/**
|
2005-12-22 01:07:28 +00:00
|
|
|
* View, the V in the MVC triad.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* Class holding methods for displaying presentation data.
|
2005-07-02 22:49:04 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view
|
2005-07-02 22:49:04 +00:00
|
|
|
*/
|
2006-10-16 20:02:34 +00:00
|
|
|
class View extends Object {
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Name of the controller.
|
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var string Name of controller
|
2005-07-10 05:08:19 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $name = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores the current URL (for links etc.)
|
|
|
|
*
|
|
|
|
* @var string Current URL
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $here = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2006-01-20 07:46:14 +00:00
|
|
|
* Not used. 2006-09
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @var unknown_type
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $parent = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Action to be performed.
|
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var string Name of action
|
2005-07-10 05:08:19 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $action = null;
|
2006-08-30 16:23:24 +00:00
|
|
|
/**
|
|
|
|
* Name of current model this view context is attached to
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $model = null;
|
|
|
|
/**
|
|
|
|
* Name of current model field this view context is attached to
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $field = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* An array of names of models the particular controller wants to use.
|
|
|
|
*
|
|
|
|
* @var mixed A single name as a string or a list of names as an array.
|
|
|
|
* @access protected
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $uses = false;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An array of names of built-in helpers to include.
|
|
|
|
*
|
|
|
|
* @var mixed A single name as a string or a list of names as an array.
|
|
|
|
* @access protected
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $helpers = array('Html');
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2005-07-21 04:02:32 +00:00
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Path to View.
|
2005-07-21 04:02:32 +00:00
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var string Path to View
|
2005-07-21 04:02:32 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $viewPath;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2006-08-18 08:05:00 +00:00
|
|
|
/**
|
|
|
|
* Path to Layout.
|
|
|
|
*
|
|
|
|
* @var string Path to Layout
|
|
|
|
*/
|
2006-11-01 06:51:57 +00:00
|
|
|
var $layoutPath = null;
|
2006-08-18 08:05:00 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Variables for the view
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
2006-11-28 11:18:05 +00:00
|
|
|
var $viewVars = array();
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2006-08-28 20:41:08 +00:00
|
|
|
/**
|
|
|
|
* Scripts (and/or other <head /> tags) for the layout
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__scripts = array();
|
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Title HTML element of this View.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $pageTitle = false;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An array of model objects.
|
|
|
|
*
|
|
|
|
* @var array Array of model objects.
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $models = array();
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Path parts for creating links in views.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var string Base URL
|
2005-07-10 05:08:19 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $base = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Name of layout to use with this View.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $layout = 'default';
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Turns on or off Cake's conventional mode of rendering views. On by default.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $autoRender = true;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Turns on or off Cake's conventional mode of finding layout files. On by default.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $autoLayout = true;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2005-07-21 04:02:32 +00:00
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Array of parameter data
|
2005-07-21 04:02:32 +00:00
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var array Parameter data
|
2005-07-21 04:02:32 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $params;
|
2005-07-21 04:02:32 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* True when the view has been rendered.
|
2005-07-21 04:02:32 +00:00
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @var boolean
|
2005-07-21 04:02:32 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $hasRendered = null;
|
2005-12-22 01:07:28 +00:00
|
|
|
|
2005-09-17 07:56:32 +00:00
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Reference to the Controller for this view.
|
2005-09-17 07:56:32 +00:00
|
|
|
*
|
2006-02-07 02:19:53 +00:00
|
|
|
* @var Controller
|
2005-09-17 07:56:32 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $controller = null;
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2005-12-28 17:23:12 +00:00
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Array of loaded view helpers.
|
2005-12-28 17:23:12 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $loaded = array();
|
2005-12-28 17:23:12 +00:00
|
|
|
|
2006-01-01 02:05:01 +00:00
|
|
|
/**
|
2006-11-25 21:27:34 +00:00
|
|
|
* File extension. Defaults to Cake's template ".ctp".
|
2006-01-01 02:05:01 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2006-11-25 21:27:34 +00:00
|
|
|
var $ext = '.ctp';
|
2006-01-01 02:05:01 +00:00
|
|
|
|
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Sub-directory for this view file.
|
2006-01-01 02:05:01 +00:00
|
|
|
*
|
2006-02-07 02:19:53 +00:00
|
|
|
* @var string
|
2006-01-01 02:05:01 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $subDir = null;
|
2006-01-01 02:05:01 +00:00
|
|
|
|
2006-02-01 13:26:23 +00:00
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Enter description here... Themes. New in Cake RC4.
|
2006-02-01 13:26:23 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $themeWeb = null;
|
2006-02-01 13:26:23 +00:00
|
|
|
|
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Plugin name. A Plugin is a sub-application. New in Cake RC4.
|
2006-02-01 13:26:23 +00:00
|
|
|
*
|
2006-02-07 02:19:53 +00:00
|
|
|
* @link http://wiki.cakephp.org/docs:plugins
|
|
|
|
* @var string
|
2006-02-01 13:26:23 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $plugin = null;
|
2006-02-01 13:26:23 +00:00
|
|
|
|
2006-08-18 08:05:00 +00:00
|
|
|
/**
|
|
|
|
* Controller URL-generation data
|
|
|
|
*
|
|
|
|
* @var mixed
|
|
|
|
*/
|
|
|
|
var $namedArgs = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller URL-generation data
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $argSeparator = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of variables to collect from the associated controller
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
|
|
|
*/
|
2006-11-28 11:18:05 +00:00
|
|
|
var $__passedVars = array('viewVars', 'action', 'autoLayout', 'autoRender', 'ext', 'base', 'webroot', 'helpers', 'here', 'layout', 'modelNames', 'name', 'pageTitle', 'layoutPath', 'viewPath', 'params', 'data', 'webservices', 'plugin', 'namedArgs', 'argSeparator', 'cacheAction');
|
2005-07-21 04:02:32 +00:00
|
|
|
/**
|
2005-08-25 16:40:50 +00:00
|
|
|
* Constructor
|
2005-07-21 04:02:32 +00:00
|
|
|
*
|
|
|
|
* @return View
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function __construct(&$controller) {
|
2006-07-31 23:55:29 +00:00
|
|
|
if(is_object($controller)) {
|
2006-11-25 08:55:16 +00:00
|
|
|
$count = count($this->__passedVars);
|
|
|
|
for ($j = 0; $j < $count; $j++) {
|
2006-07-31 23:55:29 +00:00
|
|
|
$var = $this->__passedVars[$j];
|
|
|
|
$this->{$var} = $controller->{$var};
|
|
|
|
}
|
2006-07-27 17:13:02 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
parent::__construct();
|
2006-11-27 04:46:00 +00:00
|
|
|
ClassRegistry::addObject('view', $this);
|
2006-07-06 13:45:13 +00:00
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2005-12-22 01:07:28 +00:00
|
|
|
* Renders view for given action and layout. If $file is given, that is used
|
2006-11-25 21:27:34 +00:00
|
|
|
* for a view filename (e.g. customFunkyView.ctp).
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $action Name of action to render for
|
|
|
|
* @param string $layout Layout to use
|
|
|
|
* @param string $file Custom filename for view
|
|
|
|
*/
|
|
|
|
function render($action = null, $layout = null, $file = null) {
|
|
|
|
|
|
|
|
if (isset($this->hasRendered) && $this->hasRendered) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
$this->hasRendered = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$action) {
|
|
|
|
$action = $this->action;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($layout) {
|
2006-08-18 08:05:00 +00:00
|
|
|
$this->layout = $layout;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($file) {
|
|
|
|
$viewFileName = $file;
|
2006-11-27 01:04:19 +00:00
|
|
|
$this->_missingView($viewFileName, $action);
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
|
|
|
$viewFileName = $this->_getViewFileName($action);
|
|
|
|
}
|
2006-11-28 11:18:05 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if ($viewFileName && !$this->hasRendered) {
|
2006-11-26 03:22:02 +00:00
|
|
|
if (substr($viewFileName, -3) === 'ctp' || substr($viewFileName, -5) === 'thtml') {
|
2006-11-28 11:18:05 +00:00
|
|
|
$out = View::_render($viewFileName, $this->viewVars);
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-11-28 11:18:05 +00:00
|
|
|
$out = $this->_render($viewFileName, $this->viewVars);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($out !== false) {
|
|
|
|
if ($this->layout && $this->autoLayout) {
|
|
|
|
$out = $this->renderLayout($out);
|
2006-11-25 09:27:13 +00:00
|
|
|
if (isset($this->loaded['cache']) && (($this->cacheAction != false)) && (defined('CACHE_CHECK') && CACHE_CHECK === true)) {
|
2006-11-24 04:41:56 +00:00
|
|
|
$replace = array('<cake:nocache>', '</cake:nocache>');
|
|
|
|
$out = str_replace($replace, '', $out);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print $out;
|
|
|
|
$this->hasRendered = true;
|
|
|
|
} else {
|
2006-11-28 11:18:05 +00:00
|
|
|
$out = $this->_render($viewFileName, $this->viewVars);
|
2006-05-26 05:29:17 +00:00
|
|
|
trigger_error(sprintf(__("Error in view %s, got: <blockquote>%s</blockquote>"), $viewFileName, $out), E_USER_ERROR);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Renders a piece of PHP with provided parameters and returns HTML, XML, or any other string.
|
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* This realizes the concept of Elements, (or "partial layouts")
|
2005-12-22 01:07:28 +00:00
|
|
|
* and the $params array is used to send data to be used in the
|
2005-08-25 16:40:50 +00:00
|
|
|
* Element.
|
|
|
|
*
|
2006-10-31 03:20:57 +00:00
|
|
|
* @link
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $name Name of template file in the/app/views/elements/ folder
|
|
|
|
* @param array $params Array of data to be made available to the for rendered view (i.e. the Element)
|
|
|
|
* @return string Rendered output
|
|
|
|
*/
|
|
|
|
function renderElement($name, $params = array()) {
|
2006-11-01 06:51:57 +00:00
|
|
|
$params = array_merge_recursive($params, $this->loaded);
|
|
|
|
|
2006-10-20 21:48:35 +00:00
|
|
|
if(isset($params['plugin'])) {
|
|
|
|
$this->plugin = $params['plugin'];
|
|
|
|
}
|
2006-11-01 06:51:57 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (!is_null($this->plugin)) {
|
|
|
|
if (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'elements' . DS . $name . $this->ext)) {
|
2006-11-01 06:51:57 +00:00
|
|
|
$elementFileName = APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'elements' . DS . $name . $this->ext;
|
2006-11-28 11:18:05 +00:00
|
|
|
return $this->_render($elementFileName, array_merge($this->viewVars, $params), false);
|
2006-11-25 21:27:34 +00:00
|
|
|
} elseif (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'elements' . DS . $name . '.thtml')) {
|
|
|
|
$elementFileName = APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'elements' . DS . $name . '.thtml';
|
2006-11-28 11:18:05 +00:00
|
|
|
return $this->_render($elementFileName, array_merge($this->viewVars, $params), false);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-01 06:51:57 +00:00
|
|
|
$paths = Configure::getInstance();
|
|
|
|
foreach($paths->viewPaths as $path) {
|
|
|
|
if (file_exists($path . 'elements' . DS . $name . $this->ext)) {
|
|
|
|
$elementFileName = $path . 'elements' . DS . $name . $this->ext;
|
2006-11-28 11:18:05 +00:00
|
|
|
return $this->_render($elementFileName, array_merge($this->viewVars, $params), false);
|
2006-11-25 21:27:34 +00:00
|
|
|
} elseif (file_exists($path . 'elements' . DS . $name . '.thtml')) {
|
|
|
|
$elementFileName = $path . 'elements' . DS . $name . '.thtml';
|
2006-11-28 11:18:05 +00:00
|
|
|
return $this->_render($elementFileName, array_merge($this->viewVars, $params), false);
|
2006-11-01 06:51:57 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-11-01 06:51:57 +00:00
|
|
|
return "(Error rendering Element: {$name})";
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function element($name) {
|
|
|
|
return ELEMENTS . $name . $this->ext;
|
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a layout. Returns output from _render(). Returns false on error.
|
|
|
|
*
|
2005-08-25 16:40:50 +00:00
|
|
|
* @param string $content_for_layout Content to render in a view, wrapped by the surrounding layout.
|
2005-10-18 22:27:39 +00:00
|
|
|
* @return mixed Rendered output, or false on error
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function renderLayout($content_for_layout) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$layout_fn = $this->_getLayoutFileName();
|
2006-11-26 03:22:02 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (DEBUG > 2 && $this->controller != null) {
|
2006-11-25 21:27:34 +00:00
|
|
|
$debug = View::_render(LIBS . 'view' . DS . 'templates' . DS . 'elements' . DS . 'dump.ctp', array('controller' => $this->controller), false);
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
$debug = '';
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->pageTitle !== false) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$pageTitle = $this->pageTitle;
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
$pageTitle = Inflector::humanize($this->viewPath);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-28 11:18:05 +00:00
|
|
|
$data_for_layout = array_merge($this->viewVars,
|
2006-08-18 08:05:00 +00:00
|
|
|
array(
|
|
|
|
'title_for_layout' => $pageTitle,
|
|
|
|
'content_for_layout' => $content_for_layout,
|
2006-08-28 20:41:08 +00:00
|
|
|
'scripts_for_layout' => join("\n\t", $this->__scripts),
|
2006-08-18 08:05:00 +00:00
|
|
|
'cakeDebug' => $debug
|
|
|
|
)
|
2006-06-14 18:02:37 +00:00
|
|
|
);
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
if (is_file($layout_fn)) {
|
2006-06-14 18:02:37 +00:00
|
|
|
if (empty($this->loaded) && !empty($this->helpers)) {
|
|
|
|
$loadHelpers = true;
|
|
|
|
} else {
|
|
|
|
$loadHelpers = false;
|
|
|
|
$data_for_layout = array_merge($data_for_layout, $this->loaded);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-11-27 01:04:19 +00:00
|
|
|
if (substr($layout_fn, -3) === 'ctp' || substr($layout_fn, -5) === 'thtml') {
|
2006-06-14 18:02:37 +00:00
|
|
|
$out = View::_render($layout_fn, $data_for_layout, $loadHelpers, true);
|
|
|
|
} else {
|
|
|
|
$out = $this->_render($layout_fn, $data_for_layout, $loadHelpers);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-06-14 18:02:37 +00:00
|
|
|
if ($out === false) {
|
|
|
|
$out = $this->_render($layout_fn, $data_for_layout);
|
|
|
|
trigger_error(sprintf(__("Error in layout %s, got: <blockquote>%s</blockquote>"), $layout_fn, $out), E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $out;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
return $this->cakeError('missingLayout', array(
|
|
|
|
array(
|
|
|
|
'layout' => $this->layout,
|
|
|
|
'file' => $layout_fn,
|
|
|
|
'base' => $this->base
|
|
|
|
)
|
|
|
|
));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-22 07:32:59 +00:00
|
|
|
/**
|
|
|
|
* Returns a list of variables available in the current View context
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function getVars() {
|
2006-11-28 11:18:05 +00:00
|
|
|
return array_keys($this->viewVars);
|
2006-08-22 07:32:59 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Returns the contents of the given View variable(s)
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function getVar($var) {
|
2006-11-28 11:18:05 +00:00
|
|
|
if (!isset($this->viewVars[$var])) {
|
2006-08-22 07:32:59 +00:00
|
|
|
return null;
|
|
|
|
} else {
|
2006-11-28 11:18:05 +00:00
|
|
|
return $this->viewVars[$var];
|
2006-08-22 07:32:59 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-28 20:41:08 +00:00
|
|
|
/**
|
|
|
|
* Adds a script block or other element to be inserted in $scripts_for_layout in
|
|
|
|
* the <head /> of a document layout
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $content
|
|
|
|
* @return void
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function addScript($name, $content = null) {
|
|
|
|
if ($content == null) {
|
|
|
|
if (!in_array($content, array_values($this->__scripts))) {
|
|
|
|
$this->__scripts[] = $name;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->__scripts[$name] = $content;
|
|
|
|
}
|
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
2006-08-18 08:05:00 +00:00
|
|
|
* @deprecated
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function setLayout($layout) {
|
2006-11-11 21:05:00 +00:00
|
|
|
trigger_error('(View::setLayout) Deprecated: Use $this->layout = "..." instead', E_USER_WARNING);
|
2006-06-14 18:02:37 +00:00
|
|
|
$this->layout = $layout;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-12 01:18:28 +00:00
|
|
|
/**
|
|
|
|
* Allows a template or element to set a variable that will be available in
|
|
|
|
* a layout or other element. Analagous to Controller::set.
|
|
|
|
*
|
|
|
|
* @param mixed $one A string or an array of data.
|
|
|
|
* @param mixed $two Value in case $one is a string (which then works as the key).
|
|
|
|
* Unused if $one is an associative array, otherwise serves as the values to $one's keys.
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
function set($one, $two = null) {
|
|
|
|
|
|
|
|
$data = null;
|
|
|
|
if (is_array($one)) {
|
|
|
|
if (is_array($two)) {
|
|
|
|
$data = array_combine($one, $two);
|
|
|
|
} else {
|
|
|
|
$data = $one;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$data = array($one => $two);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($data == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($data as $name => $value) {
|
|
|
|
if ($name == 'title') {
|
|
|
|
$this->pageTitle = $value;
|
|
|
|
} else {
|
2006-11-28 11:18:05 +00:00
|
|
|
$this->viewVars[$name] = $value;
|
2006-08-12 01:18:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
|
|
|
* Displays an error page to the user. Uses layouts/error.html to render the page.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param int $code HTTP Error code (for instance: 404)
|
|
|
|
* @param string $name Name of the error (for instance: Not Found)
|
|
|
|
* @param string $message Error message as a web page
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function error($code, $name, $message) {
|
|
|
|
header ("HTTP/1.0 {$code} {$name}");
|
|
|
|
print ($this->_render(VIEWS . 'layouts/error.thtml', array('code' => $code,
|
2006-11-25 21:27:34 +00:00
|
|
|
'name' => $name,
|
|
|
|
'message' => $message)));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
2006-02-18 23:42:21 +00:00
|
|
|
* Private methods.
|
|
|
|
*************************************************************************/
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
2006-11-25 21:27:34 +00:00
|
|
|
* Returns filename of given action's template file (.ctp) as a string. CamelCased action names will be under_scored! This means that you can have LongActionNames that refer to long_action_names.ctp views.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
|
|
|
* @param string $action Controller action to find template filename for
|
|
|
|
* @return string Template filename
|
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function _getViewFileName($action) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$action = Inflector::underscore($action);
|
|
|
|
$paths = Configure::getInstance();
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
if (!is_null($this->webservices)) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$type = strtolower($this->webservices) . DS;
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
$type = null;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2006-06-14 18:02:37 +00:00
|
|
|
$position = strpos($action, '..');
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
if ($position === false) {
|
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
$action = explode('/', $action);
|
|
|
|
$i = array_search('..', $action);
|
|
|
|
unset($action[$i - 1]);
|
|
|
|
unset($action[$i]);
|
|
|
|
$action='..' . DS . implode(DS, $action);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-25 19:58:16 +00:00
|
|
|
if (!is_null($this->plugin)) {
|
|
|
|
$viewFileName = APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . $this->viewPath . DS . $action . $this->ext;
|
2006-11-26 03:22:02 +00:00
|
|
|
|
2006-11-25 19:58:16 +00:00
|
|
|
if (file_exists(APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . $this->subDir . $type . $action . $this->ext)) {
|
2006-11-25 21:27:34 +00:00
|
|
|
return APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . $this->subDir . $type . $action . $this->ext;
|
2006-11-26 03:22:02 +00:00
|
|
|
} elseif (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . $this->viewPath . DS . $action . $this->ext)) {
|
|
|
|
return APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . $this->viewPath . DS . $action . $this->ext;
|
2006-11-25 21:27:34 +00:00
|
|
|
} elseif (file_exists(APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . $this->subDir . $type . $action . '.thtml')) {
|
|
|
|
return APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . $this->subDir . $type . $action . '.thtml';
|
|
|
|
} elseif (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . $this->viewPath . DS . $action . '.thtml')) {
|
|
|
|
return APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . $this->viewPath . DS . $action . '.thtml';
|
2006-11-25 19:58:16 +00:00
|
|
|
} else {
|
2006-11-26 03:22:02 +00:00
|
|
|
$this->cakeError('missingView', array(array(
|
|
|
|
'className' => $this->name,
|
|
|
|
'action' => $action,
|
|
|
|
'file' => $viewFileName,
|
|
|
|
'base' => $this->base)));
|
|
|
|
exit();
|
2006-11-25 19:58:16 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-26 03:22:02 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
foreach($paths->viewPaths as $path) {
|
2006-06-14 18:02:37 +00:00
|
|
|
if (file_exists($path . $this->viewPath . DS . $this->subDir . $type . $action . $this->ext)) {
|
2006-11-25 21:27:34 +00:00
|
|
|
return $path . $this->viewPath . DS . $this->subDir . $type . $action . $this->ext;
|
|
|
|
} elseif (file_exists($path . $this->viewPath . DS . $this->subDir . $type . $action . '.thtml')) {
|
|
|
|
return $path . $this->viewPath . DS . $this->subDir . $type . $action . '.thtml';
|
2006-06-14 18:02:37 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-11-28 11:18:05 +00:00
|
|
|
|
2006-11-25 21:27:34 +00:00
|
|
|
if ($viewFileName = fileExistsInPath(LIBS . 'view' . DS . 'templates' . DS . 'errors' . DS . $type . $action . '.ctp')) {
|
2006-11-26 03:22:02 +00:00
|
|
|
return $viewFileName;
|
2006-11-25 21:27:34 +00:00
|
|
|
} elseif($viewFileName = fileExistsInPath(LIBS . 'view' . DS . 'templates' . DS . $this->viewPath . DS . $type . $action . '.ctp')) {
|
2006-11-26 03:22:02 +00:00
|
|
|
return $viewFileName;
|
2006-11-27 01:04:19 +00:00
|
|
|
} else {
|
|
|
|
$viewFileName = APP . DS . 'views' . DS . $this->viewPath . DS . $action . $this->ext;
|
|
|
|
$this->_missingView($viewFileName, $action);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-11-27 01:04:19 +00:00
|
|
|
return false;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns layout filename for this template as a string.
|
|
|
|
*
|
2006-11-25 21:27:34 +00:00
|
|
|
* @return string Filename for layout file (.ctp).
|
2005-07-10 05:08:19 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function _getLayoutFileName() {
|
|
|
|
if (isset($this->webservices) && !is_null($this->webservices)) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$type = strtolower($this->webservices) . DS;
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2006-06-14 18:02:37 +00:00
|
|
|
$type = null;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-01 06:51:57 +00:00
|
|
|
if(!is_null($this->layoutPath)){
|
2006-11-25 21:27:34 +00:00
|
|
|
$type = $this->layoutPath . DS;
|
2006-11-01 06:51:57 +00:00
|
|
|
}
|
|
|
|
|
2006-11-25 19:58:16 +00:00
|
|
|
if (!is_null($this->plugin)) {
|
2006-11-25 21:27:34 +00:00
|
|
|
if (file_exists(APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . $this->ext)) {
|
|
|
|
return APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . $this->ext;
|
|
|
|
} elseif (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . $this->ext)) {
|
|
|
|
return APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . $this->ext;
|
|
|
|
} elseif (file_exists(APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . '.thtml')) {
|
|
|
|
return APP . 'views' . DS . 'plugins' . DS . $this->plugin . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . '.thtml';
|
|
|
|
} elseif (file_exists(APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . '.thtml')) {
|
|
|
|
return APP . 'plugins' . DS . $this->plugin . DS . 'views' . DS . 'layouts' . DS . $this->subDir . $type . $this->layout . '.thtml';
|
2006-06-14 18:02:37 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-11-25 19:58:16 +00:00
|
|
|
|
2006-11-01 06:51:57 +00:00
|
|
|
$paths = Configure::getInstance();
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-11-01 06:51:57 +00:00
|
|
|
foreach($paths->viewPaths as $path) {
|
|
|
|
if (file_exists($path . 'layouts' . DS . $this->subDir . $this->layoutPath . $type . $this->layout . $this->ext)) {
|
2006-11-25 21:27:34 +00:00
|
|
|
return $path . 'layouts' . DS . $this->subDir . $this->layoutPath . $type . $this->layout . $this->ext;
|
|
|
|
} elseif (file_exists($path . 'layouts' . DS . $this->subDir . $this->layoutPath . $type . $this->layout . '.thtml')) {
|
|
|
|
return $path . 'layouts' . DS . $this->subDir . $this->layoutPath . $type . $this->layout . '.thtml';
|
2006-08-18 08:05:00 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-26 03:22:02 +00:00
|
|
|
$layoutFileName = fileExistsInPath(LIBS . 'view' . DS . 'templates' . DS . 'layouts' . DS . $type . $this->layout . '.ctp');
|
|
|
|
if(is_null($layoutFileName)) {
|
|
|
|
return 'missingLayout';
|
2006-11-01 06:51:57 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
return $layoutFileName;
|
|
|
|
}
|
2005-12-22 01:07:28 +00:00
|
|
|
|
2005-07-10 05:08:19 +00:00
|
|
|
/**
|
2005-12-22 01:07:28 +00:00
|
|
|
* Renders and returns output for given view filename with its
|
2005-07-10 05:08:19 +00:00
|
|
|
* array of data.
|
|
|
|
*
|
|
|
|
* @param string $___viewFn Filename of the view
|
2006-02-18 23:42:21 +00:00
|
|
|
* @param array $___dataForView Data to include in rendered view
|
2005-07-10 05:08:19 +00:00
|
|
|
* @return string Rendered output
|
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function _render($___viewFn, $___dataForView, $loadHelpers = true, $cached = false) {
|
|
|
|
if ($this->helpers != false && $loadHelpers === true) {
|
|
|
|
$loadedHelpers = array();
|
|
|
|
$loadedHelpers = $this->_loadHelpers($loadedHelpers, $this->helpers);
|
|
|
|
|
|
|
|
foreach(array_keys($loadedHelpers) as $helper) {
|
|
|
|
$replace = strtolower(substr($helper, 0, 1));
|
|
|
|
$camelBackedHelper = preg_replace('/\\w/', $replace, $helper, 1);
|
|
|
|
|
|
|
|
${$camelBackedHelper} =& $loadedHelpers[$helper];
|
|
|
|
|
2006-11-25 08:55:16 +00:00
|
|
|
if (is_array(${$camelBackedHelper}->helpers) && !empty(${$camelBackedHelper}->helpers)) {
|
|
|
|
$subHelpers = ${$camelBackedHelper}->helpers;
|
|
|
|
foreach($subHelpers as $subHelper) {
|
2006-05-26 05:29:17 +00:00
|
|
|
${$camelBackedHelper}->{$subHelper} =& $loadedHelpers[$subHelper];
|
|
|
|
}
|
|
|
|
}
|
2006-06-14 18:02:37 +00:00
|
|
|
$this->loaded[$camelBackedHelper] = (${$camelBackedHelper});
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extract($___dataForView, EXTR_SKIP);
|
|
|
|
$BASE = $this->base;
|
|
|
|
$params =& $this->params;
|
|
|
|
$page_title = $this->pageTitle;
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
|
|
|
|
if (DEBUG) {
|
|
|
|
include ($___viewFn);
|
|
|
|
} else {
|
|
|
|
@include ($___viewFn);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->helpers != false && $loadHelpers === true) {
|
2006-06-14 18:02:37 +00:00
|
|
|
foreach ($loadedHelpers as $helper) {
|
|
|
|
if (is_object($helper)) {
|
|
|
|
if (is_subclass_of($helper, 'Helper') || is_subclass_of($helper, 'helper')) {
|
|
|
|
$helper->afterRender();
|
|
|
|
}
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = ob_get_clean();
|
|
|
|
|
2006-11-25 09:27:13 +00:00
|
|
|
if (isset($this->loaded['cache']) && (($this->cacheAction != false)) && (defined('CACHE_CHECK') && CACHE_CHECK === true)) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (is_a($this->loaded['cache'], 'CacheHelper')) {
|
|
|
|
$cache =& $this->loaded['cache'];
|
|
|
|
|
|
|
|
if ($cached === true) {
|
|
|
|
$cache->view = &$this;
|
|
|
|
}
|
|
|
|
|
2006-06-14 18:02:37 +00:00
|
|
|
$cache->base = $this->base;
|
|
|
|
$cache->here = $this->here;
|
|
|
|
$cache->action = $this->action;
|
2006-11-12 00:12:34 +00:00
|
|
|
$cache->controllerName = $this->name;
|
2006-11-25 09:27:13 +00:00
|
|
|
$cache->layout = $this->layout;
|
|
|
|
$cache->cacheAction = $this->cacheAction;
|
2006-05-26 05:29:17 +00:00
|
|
|
$cache->cache($___viewFn, $out, $cached);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
2005-12-27 03:33:44 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Loads helpers, with their dependencies.
|
|
|
|
*
|
|
|
|
* @param array $loaded List of helpers that are already loaded.
|
|
|
|
* @param array $helpers List of helpers to load.
|
|
|
|
* @return array
|
2005-10-09 01:56:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function &_loadHelpers(&$loaded, $helpers) {
|
2006-09-10 14:33:20 +00:00
|
|
|
$helpers[] = 'Session';
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
foreach($helpers as $helper) {
|
2006-07-29 17:08:23 +00:00
|
|
|
$pos = strpos($helper, '/');
|
|
|
|
if ($pos === false) {
|
|
|
|
$plugin = $this->plugin;
|
|
|
|
} else {
|
|
|
|
$parts = explode('/', $helper);
|
|
|
|
$plugin = Inflector::underscore($parts['0']);
|
|
|
|
$helper = $parts['1'];
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
$helperCn = $helper . 'Helper';
|
|
|
|
|
|
|
|
if (in_array($helper, array_keys($loaded)) !== true) {
|
|
|
|
if (!class_exists($helperCn)) {
|
2006-07-29 17:08:23 +00:00
|
|
|
if (is_null($plugin) || !loadPluginHelper($plugin, $helper)) {
|
2006-08-20 22:21:22 +00:00
|
|
|
if (!loadHelper($helper)) {
|
2006-11-23 10:06:49 +00:00
|
|
|
$this->cakeError('missingHelperFile', array(array(
|
|
|
|
'helper' => $helper,
|
|
|
|
'file' => Inflector::underscore($helper) . '.php',
|
|
|
|
'base' => $this->base)));
|
|
|
|
exit();
|
2006-08-20 22:21:22 +00:00
|
|
|
}
|
2006-06-14 18:02:37 +00:00
|
|
|
}
|
|
|
|
if (!class_exists($helperCn)) {
|
2006-11-23 10:06:49 +00:00
|
|
|
$this->cakeError('missingHelperClass', array(array(
|
|
|
|
'helper' => $helper,
|
|
|
|
'file' => Inflector::underscore($helper) . '.php',
|
|
|
|
'base' => $this->base)));
|
|
|
|
exit();
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-31 03:20:57 +00:00
|
|
|
$camelBackedHelper = Inflector::variable($helper);
|
2006-11-22 03:16:34 +00:00
|
|
|
${$camelBackedHelper} =& new $helperCn();
|
2006-07-31 23:55:29 +00:00
|
|
|
|
|
|
|
$vars = array('base', 'webroot', 'here', 'params', 'action', 'data', 'themeWeb', 'plugin', 'namedArgs', 'argSeparator');
|
|
|
|
$c = count($vars);
|
|
|
|
for ($j = 0; $j < $c; $j++) {
|
|
|
|
${$camelBackedHelper}->{$vars[$j]} = $this->{$vars[$j]};
|
|
|
|
}
|
2006-06-14 18:02:37 +00:00
|
|
|
|
|
|
|
if (!empty($this->validationErrors)) {
|
|
|
|
${$camelBackedHelper}->validationErrors = $this->validationErrors;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-06-14 18:02:37 +00:00
|
|
|
$loaded[$helper] =& ${$camelBackedHelper};
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-11-25 08:55:16 +00:00
|
|
|
if (is_array(${$camelBackedHelper}->helpers)) {
|
2006-06-14 18:02:37 +00:00
|
|
|
$loaded = &$this->_loadHelpers($loaded, ${$camelBackedHelper}->helpers);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $loaded;
|
|
|
|
}
|
2006-11-27 01:04:19 +00:00
|
|
|
/**
|
|
|
|
* Render cached view
|
|
|
|
*
|
|
|
|
* @param string $filename the cache file to include
|
|
|
|
* @param string $timeStart the page render start time
|
|
|
|
* @return void
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function renderCache($filename, $timeStart) {
|
|
|
|
ob_start();
|
|
|
|
include ($filename);
|
|
|
|
|
2006-08-03 19:31:57 +00:00
|
|
|
if (DEBUG && $this->layout != 'xml') {
|
2006-05-26 05:29:17 +00:00
|
|
|
echo "<!-- Cached Render Time: " . round(getMicrotime() - $timeStart, 4) . "s -->";
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = ob_get_clean();
|
|
|
|
|
|
|
|
if (preg_match('/^<!--cachetime:(\\d+)-->/', $out, $match)) {
|
|
|
|
if (time() >= $match['1']) {
|
|
|
|
@unlink($filename);
|
|
|
|
unset ($out);
|
|
|
|
return;
|
|
|
|
} else {
|
2006-08-03 19:31:57 +00:00
|
|
|
if($this->layout === 'xml'){
|
|
|
|
header('Content-type: text/xml');
|
|
|
|
}
|
2006-11-24 04:41:56 +00:00
|
|
|
$out = str_replace('<!--cachetime:'.$match['1'].'-->', '', $out);
|
2006-05-26 05:29:17 +00:00
|
|
|
e($out);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-27 01:04:19 +00:00
|
|
|
/**
|
|
|
|
* Return a misssing view error message
|
|
|
|
*
|
|
|
|
* @param string $viewFileName the filename that should exist
|
|
|
|
* @return cakeError
|
2006-11-28 11:18:05 +00:00
|
|
|
*/
|
|
|
|
function _missingView($viewFileName = null, $action = null) {
|
2006-11-27 01:04:19 +00:00
|
|
|
if (!is_file($viewFileName) && !fileExistsInPath($viewFileName) || $viewFileName === '/' || $viewFileName === '\\') {
|
|
|
|
if (strpos($action, 'missingAction') !== false) {
|
|
|
|
$errorAction = 'missingAction';
|
|
|
|
} else {
|
|
|
|
$errorAction = 'missingView';
|
|
|
|
}
|
2006-11-28 11:18:05 +00:00
|
|
|
|
2006-11-27 01:04:19 +00:00
|
|
|
foreach(array($this->name, 'errors') as $viewDir) {
|
|
|
|
$errorAction = Inflector::underscore($errorAction);
|
|
|
|
if (file_exists(VIEWS . $viewDir . DS . $errorAction . $this->ext)) {
|
|
|
|
$missingViewFileName = VIEWS . $viewDir . DS . $errorAction . $this->ext;
|
|
|
|
} elseif (file_exists(VIEWS . $viewDir . DS . $errorAction . '.thtml')) {
|
|
|
|
$missingViewFileName = VIEWS . $viewDir . DS . $errorAction . '.thtml';
|
|
|
|
} elseif ($missingViewFileName = fileExistsInPath(LIBS . 'view' . DS . 'templates' . DS . $viewDir . DS . $errorAction . '.ctp')) {
|
|
|
|
} else {
|
|
|
|
$missingViewFileName = false;
|
|
|
|
}
|
|
|
|
$missingViewExists = is_file($missingViewFileName);
|
|
|
|
|
|
|
|
if ($missingViewExists) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($action, 'missingView') === false) {
|
|
|
|
return $this->cakeError('missingView', array(
|
|
|
|
array('className' => $this->name,
|
|
|
|
'action' => $this->action,
|
|
|
|
'file' => $viewFileName,
|
|
|
|
'base' => $this->base)));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-01 13:26:23 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2005-06-21 23:44:49 +00:00
|
|
|
?>
|