2005-06-21 23:44:49 +00:00
|
|
|
<?php
|
2005-08-21 06:49:02 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-06-21 23:44:49 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Html Helper class file.
|
2005-06-22 01:20:19 +00:00
|
|
|
*
|
2006-02-07 02:19:53 +00:00
|
|
|
* Simplifies the construction of HTML elements.
|
2005-06-22 01:20:19 +00:00
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +00:00
|
|
|
* 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-07-10 05:08:19 +00:00
|
|
|
*
|
2005-08-22 04:15:57 +00:00
|
|
|
* @filesource
|
2007-02-02 10:39:45 +00:00
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.9.1
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
|
|
|
/**
|
2005-09-07 01:52:45 +00:00
|
|
|
* Html Helper class for easy use of HTML widgets.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
2005-09-07 01:52:45 +00:00
|
|
|
* HtmlHelper encloses all methods needed while working with HTML pages.
|
2005-07-10 05:08:19 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.view.helpers
|
2005-07-10 05:08:19 +00:00
|
|
|
*/
|
2006-10-27 21:40:34 +00:00
|
|
|
class HtmlHelper extends AppHelper {
|
2006-02-18 23:42:21 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* Public variables
|
|
|
|
*************************************************************************/
|
2005-12-27 03:33:44 +00:00
|
|
|
|
2006-02-18 23:42:21 +00:00
|
|
|
/**#@+
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-11-22 03:51:21 +00:00
|
|
|
/**
|
|
|
|
* html tags used by this helper.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2006-11-25 08:55:16 +00:00
|
|
|
var $tags = array(
|
|
|
|
'metalink' => '<link href="%s" title="%s"%s />',
|
|
|
|
'link' => '<a href="%s" %s>%s</a>',
|
|
|
|
'mailto' => '<a href="mailto:%s" %s>%s</a>',
|
|
|
|
'form' => '<form %s>',
|
|
|
|
'formend' => '</form>',
|
|
|
|
'input' => '<input name="data[%s][%s]" %s/>',
|
|
|
|
'textarea' => '<textarea name="data[%s][%s]" %s>%s</textarea>',
|
|
|
|
'hidden' => '<input type="hidden" name="data[%s][%s]" %s/>',
|
|
|
|
'textarea' => '<textarea name="data[%s][%s]" %s>%s</textarea>',
|
|
|
|
'checkbox' => '<input type="checkbox" name="data[%s][%s]" %s/>',
|
|
|
|
'radio' => '<input type="radio" name="data[%s][%s]" id="%s" %s />%s',
|
|
|
|
'selectstart' => '<select name="data[%s][%s]" %s>',
|
|
|
|
'selectmultiplestart' => '<select name="data[%s][%s][]" %s>',
|
|
|
|
'selectempty' => '<option value="" %s> </option>',
|
|
|
|
'selectoption' => '<option value="%s" %s>%s</option>',
|
|
|
|
'selectend' => '</select>',
|
|
|
|
'optiongroup' => '<optgroup label="%s"%s>',
|
|
|
|
'optiongroupend' => '</optgroup>',
|
|
|
|
'password' => '<input type="password" name="data[%s][%s]" %s/>',
|
|
|
|
'file' => '<input type="file" name="data[%s][%s]" %s/>',
|
|
|
|
'file_no_model' => '<input type="file" name="%s" %s/>',
|
|
|
|
'submit' => '<input type="submit" %s/>',
|
|
|
|
'submitimage' => '<input type="image" src="%s" %s/>',
|
|
|
|
'image' => '<img src="%s" %s/>',
|
|
|
|
'tableheader' => '<th%s>%s</th>',
|
|
|
|
'tableheaderrow' => '<tr%s>%s</tr>',
|
|
|
|
'tablecell' => '<td%s>%s</td>',
|
|
|
|
'tablerow' => '<tr%s>%s</tr>',
|
|
|
|
'block' => '<div%s>%s</div>',
|
|
|
|
'blockstart' => '<div%s>',
|
|
|
|
'blockend' => '</div>',
|
|
|
|
'para' => '<p%s>%s</p>',
|
|
|
|
'parastart' => '<p%s>',
|
|
|
|
'label' => '<label for="%s"%s>%s</label>',
|
|
|
|
'fieldset' => '<fieldset><legend>%s</legend>%s</fieldset>',
|
|
|
|
'fieldsetstart' => '<fieldset><legend>%s</legend>',
|
|
|
|
'fieldsetend' => '</fieldset>',
|
|
|
|
'legend' => '<legend>%s</legend>',
|
|
|
|
'css' => '<link rel="%s" type="text/css" href="%s" %s/>',
|
|
|
|
'style' => '<style type="text/css"%s>%s</style>',
|
|
|
|
'charset' => '<meta http-equiv="Content-Type" content="text/html; charset=%s" />'
|
|
|
|
);
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Base URL
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $base = null;
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* URL to current action.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $here = null;
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Parameter array.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $params = array();
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Current action.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $action = null;
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Enter description here...
|
|
|
|
*
|
2006-02-07 02:19:53 +00:00
|
|
|
* @var array
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $data = null;
|
2006-02-18 23:42:21 +00:00
|
|
|
/**#@-*/
|
|
|
|
/*************************************************************************
|
|
|
|
* Private variables
|
|
|
|
*************************************************************************/
|
|
|
|
/**#@+
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Breadcrumbs.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @var array
|
2005-12-27 03:33:44 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $_crumbs = array();
|
2006-06-17 02:33:12 +00:00
|
|
|
/**
|
|
|
|
* Document type definitions
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__docTypes = array(
|
|
|
|
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
|
|
|
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
|
|
|
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
|
|
|
|
'xhtml-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
|
|
|
'xhtml-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
|
|
|
'xhtml-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
|
|
|
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'
|
|
|
|
);
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Adds a link to the breadcrumbs array.
|
|
|
|
*
|
|
|
|
* @param string $name Text for link
|
|
|
|
* @param string $link URL for link
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function addCrumb($name, $link) {
|
|
|
|
$this->_crumbs[] = array($name, $link);
|
|
|
|
}
|
2006-06-17 02:33:12 +00:00
|
|
|
/**
|
|
|
|
* Returns a doctype string.
|
|
|
|
*
|
|
|
|
* Possible doctypes:
|
|
|
|
* + html4-strict: HTML4 Strict.
|
|
|
|
* + html4-trans: HTML4 Transitional.
|
|
|
|
* + html4-frame: HTML4 Frameset.
|
|
|
|
* + xhtml-strict: XHTML1 Strict.
|
|
|
|
* + xhtml-trans: XHTML1 Transitional.
|
|
|
|
* + xhtml-frame: XHTML1 Frameset.
|
|
|
|
* + xhtml11: XHTML1.1.
|
|
|
|
*
|
|
|
|
* @param string $type Doctype to use.
|
|
|
|
* @return string Doctype.
|
|
|
|
*/
|
2006-08-20 21:54:50 +00:00
|
|
|
function docType($type = 'xhtml-strict') {
|
2006-06-17 02:33:12 +00:00
|
|
|
if (isset($this->__docTypes[$type])) {
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output($this->__docTypes[$type]);
|
2006-06-17 02:33:12 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-20 21:54:50 +00:00
|
|
|
/**
|
|
|
|
* Creates a link to an external resource
|
|
|
|
*
|
|
|
|
* @param string $title The title of the external resource
|
|
|
|
* @param mixed $url The address of the external resource
|
|
|
|
* @param array $attributes
|
|
|
|
* @return string
|
|
|
|
*/
|
2006-08-28 20:41:08 +00:00
|
|
|
function meta($title = null, $url = null, $attributes = array(), $inline = true) {
|
2007-01-24 01:56:12 +00:00
|
|
|
$types = array(
|
|
|
|
'html' => 'text/html',
|
|
|
|
'rss' => 'application/rss+xml',
|
|
|
|
'atom' => 'application/atom+xml',
|
|
|
|
'icon' => 'image/x-icon'
|
|
|
|
);
|
2006-08-20 21:54:50 +00:00
|
|
|
|
|
|
|
if (!isset($attributes['type']) && is_array($url) && isset($url['ext'])) {
|
|
|
|
if (in_array($url['ext'], array_keys($types))) {
|
|
|
|
$attributes['type'] = $url['ext'];
|
|
|
|
} else {
|
|
|
|
$attributes['type'] = 'rss';
|
|
|
|
}
|
2007-01-24 01:56:12 +00:00
|
|
|
} elseif (!isset($attributes['type'])) {
|
2006-08-20 21:54:50 +00:00
|
|
|
$attributes['type'] = 'rss';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($attributes['type']) && in_array($attributes['type'], array_keys($types))) {
|
|
|
|
$attributes['type'] = $types[$attributes['type']];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($attributes['rel'])) {
|
|
|
|
$attributes['rel'] = 'alternate';
|
|
|
|
}
|
2006-08-28 20:41:08 +00:00
|
|
|
$out = $this->output(sprintf($this->tags['metalink'], $this->url($url, true), $title, $this->_parseAttributes($attributes)));
|
|
|
|
|
|
|
|
if ($inline) {
|
|
|
|
return $out;
|
|
|
|
} else {
|
2006-11-27 04:45:03 +00:00
|
|
|
$view =& ClassRegistry::getObject('view');
|
2006-11-25 08:55:16 +00:00
|
|
|
$view->addScript($out);
|
2006-08-28 20:41:08 +00:00
|
|
|
}
|
2006-08-20 21:54:50 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Returns a charset META-tag.
|
|
|
|
*
|
|
|
|
* @param string $charset
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-12-22 21:33:23 +00:00
|
|
|
function charset($charset = null) {
|
|
|
|
if(is_null($charset)){
|
|
|
|
$charset = Configure::read('charset');
|
|
|
|
if(is_null($charset)){
|
|
|
|
$charset = 'utf-8';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output(sprintf($this->tags['charset'], $charset));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates an HTML link.
|
|
|
|
*
|
|
|
|
* If $url starts with "http://" this is treated as an external link. Else,
|
|
|
|
* it is treated as a path to controller/action and parsed with the
|
|
|
|
* HtmlHelper::url() method.
|
|
|
|
*
|
|
|
|
* If the $url is empty, $title is used instead.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $title The content of the A tag.
|
2006-08-10 04:15:19 +00:00
|
|
|
* @param mixed $url Cake-relative URL or array of URL parameters, or external URL (starts with http://)
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2005-12-27 03:33:44 +00:00
|
|
|
* @param string $confirmMessage Confirmation message.
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param boolean $escapeTitle Whether or not the text in the $title variable should be HTML escaped.
|
2006-08-01 04:07:04 +00:00
|
|
|
* @return string An <a /> element.
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function link($title, $url = null, $htmlAttributes = array(), $confirmMessage = false, $escapeTitle = true) {
|
2006-12-29 04:16:53 +00:00
|
|
|
if($url !== null) {
|
|
|
|
$url = $this->url($url);
|
|
|
|
} else {
|
|
|
|
$url = $this->url($title);
|
|
|
|
$title = $url;
|
|
|
|
$escapeTitle = false;
|
|
|
|
}
|
2007-01-05 21:48:40 +00:00
|
|
|
|
|
|
|
if(isset($htmlAttributes['escape'])) {
|
|
|
|
$escapeTitle = $htmlAttributes['escape'];
|
|
|
|
unset($htmlAttributes['escape']);
|
|
|
|
}
|
2006-12-29 04:16:53 +00:00
|
|
|
if($escapeTitle === true) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$title = htmlspecialchars($title, ENT_QUOTES);
|
2006-12-29 04:16:53 +00:00
|
|
|
} else if (is_string($escapeTitle)) {
|
|
|
|
$title = htmlentities($title, $escapeTitle);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
2007-01-05 21:48:40 +00:00
|
|
|
if(!empty($htmlAttributes['confirm'])) {
|
|
|
|
$confirmMessage = $htmlAttributes['confirm'];
|
|
|
|
unset($htmlAttributes['confirm']);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
if ($confirmMessage) {
|
|
|
|
$confirmMessage = str_replace("'", "\'", $confirmMessage);
|
2007-04-07 06:44:18 +00:00
|
|
|
$confirmMessage = str_replace('"', '\"', $confirmMessage);
|
2006-08-01 04:07:04 +00:00
|
|
|
$htmlAttributes['onclick'] = "return confirm('{$confirmMessage}');";
|
2007-01-14 15:19:42 +00:00
|
|
|
} elseif (isset($htmlAttributes['default'])) {
|
|
|
|
if ($htmlAttributes['default'] == false) {
|
|
|
|
if (isset($htmlAttributes['onclick'])) {
|
|
|
|
$htmlAttributes['onclick'] .= ' return false;';
|
|
|
|
} else {
|
|
|
|
$htmlAttributes['onclick'] = 'return false;';
|
|
|
|
}
|
|
|
|
unset($htmlAttributes['default']);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-01-05 21:48:40 +00:00
|
|
|
return $this->output(sprintf($this->tags['link'], $url, $this->_parseAttributes($htmlAttributes), $title));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-01 04:07:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a link element for CSS stylesheets.
|
|
|
|
*
|
|
|
|
* @param string $path Path to CSS file
|
|
|
|
* @param string $rel Rel attribute. Defaults to "stylesheet".
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-28 20:41:08 +00:00
|
|
|
* @param boolean $inline
|
2006-08-01 04:07:04 +00:00
|
|
|
* @return string CSS <link /> or <style /> tag, depending on the type of link.
|
|
|
|
*/
|
2006-09-10 17:30:29 +00:00
|
|
|
function css($path, $rel = null, $htmlAttributes = array(), $inline = true) {
|
2007-01-27 18:17:23 +00:00
|
|
|
if (is_array($path)) {
|
|
|
|
$out = '';
|
|
|
|
foreach ($path as $i) {
|
|
|
|
$out .= "\n\t" . $this->css($i, $rel, $htmlAttributes, $inline);
|
|
|
|
}
|
|
|
|
if ($inline) {
|
|
|
|
return $out . "\n";
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2007-02-08 07:42:23 +00:00
|
|
|
$url = $this->webroot((COMPRESS_CSS ? 'c' : '') . CSS_URL . $path . ".css");
|
2006-08-01 04:07:04 +00:00
|
|
|
if ($rel == 'import') {
|
2007-03-25 02:03:34 +00:00
|
|
|
$out = sprintf($this->tags['style'], $this->_parseAttributes($htmlAttributes, null, '', ' '), '@import url(' . $url . ');');
|
2006-08-01 04:07:04 +00:00
|
|
|
} else {
|
2006-09-10 17:30:29 +00:00
|
|
|
if ($rel == null) {
|
|
|
|
$rel = 'stylesheet';
|
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
$out = sprintf($this->tags['css'], $rel, $url, $this->_parseAttributes($htmlAttributes, null, '', ' '));
|
2006-08-01 04:07:04 +00:00
|
|
|
}
|
2006-08-28 20:41:08 +00:00
|
|
|
$out = $this->output($out);
|
|
|
|
|
|
|
|
if ($inline) {
|
|
|
|
return $out;
|
|
|
|
} else {
|
2006-11-27 04:45:03 +00:00
|
|
|
$view =& ClassRegistry::getObject('view');
|
2006-11-25 08:55:16 +00:00
|
|
|
$view->addScript($out);
|
2006-08-28 20:41:08 +00:00
|
|
|
}
|
2006-08-01 04:07:04 +00:00
|
|
|
}
|
2006-12-22 05:23:07 +00:00
|
|
|
/**
|
|
|
|
* Builds CSS style data from an array of CSS properties
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return string CSS styling data
|
|
|
|
*/
|
|
|
|
function style($data) {
|
|
|
|
if (!is_array($data)) {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a password input widget.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname/fieldname"
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function password($fieldName, $htmlAttributes = array()) {
|
2006-08-30 16:23:24 +00:00
|
|
|
$htmlAttributes = $this->__value($htmlAttributes, $fieldName);
|
|
|
|
$htmlAttributes = $this->domId($htmlAttributes);
|
|
|
|
if ($this->tagIsInvalid()) {
|
|
|
|
$htmlAttributes = $this->addClass($htmlAttributes, 'form_error');
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-30 16:23:24 +00:00
|
|
|
return $this->output(sprintf($this->tags['password'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, ' ', ' ')));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a textarea widget.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname/fieldname"
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-08-30 16:23:24 +00:00
|
|
|
function textarea($fieldName, $htmlAttributes = array()) {
|
|
|
|
$htmlAttributes = $this->__value($htmlAttributes, $fieldName);
|
|
|
|
|
|
|
|
$value = null;
|
|
|
|
if (isset($htmlAttributes['value']) && !empty($htmlAttributes['value'])) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$value = $htmlAttributes['value'];
|
|
|
|
unset($htmlAttributes['value']);
|
|
|
|
}
|
2006-08-30 16:23:24 +00:00
|
|
|
$htmlAttributes = $this->domId($htmlAttributes);
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-08-30 16:23:24 +00:00
|
|
|
if ($this->tagIsInvalid()) {
|
|
|
|
$htmlAttributes = $this->addClass($htmlAttributes, 'form_error');
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-30 16:23:24 +00:00
|
|
|
return $this->output(sprintf($this->tags['textarea'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, ' '), $value));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a checkbox widget.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname/fieldname"
|
2006-03-26 19:15:30 +00:00
|
|
|
* @deprecated string $title
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function checkbox($fieldName, $title = null, $htmlAttributes = array()) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$value = $this->tagValue($fieldName);
|
|
|
|
$notCheckedValue = 0;
|
|
|
|
|
2006-06-15 12:12:46 +00:00
|
|
|
if (isset($htmlAttributes['checked'])) {
|
|
|
|
if ($htmlAttributes['checked'] == 'checked' || intval($htmlAttributes['checked']) === 1 || $htmlAttributes['checked'] === true) {
|
|
|
|
$htmlAttributes['checked'] = 'checked';
|
|
|
|
} else {
|
|
|
|
$htmlAttributes['checked'] = null;
|
2006-05-26 05:29:17 +00:00
|
|
|
$notCheckedValue = -1;
|
|
|
|
}
|
|
|
|
} else {
|
2006-12-28 07:31:24 +00:00
|
|
|
$model = $this->model();
|
|
|
|
if (isset($htmlAttributes['value']) || (!class_exists($model) && !loadModel($model))) {
|
2007-03-25 02:03:34 +00:00
|
|
|
if(isset($htmlAttributes['value']) && $htmlAttributes['value'] == $value){
|
|
|
|
$htmlAttributes['checked'] = 'checked';
|
|
|
|
} else {
|
|
|
|
$htmlAttributes['checked'] = null;
|
|
|
|
}
|
|
|
|
if (isset($htmlAttributes['value']) && $htmlAttributes['value'] == '0') {
|
2006-06-15 12:12:46 +00:00
|
|
|
$notCheckedValue = -1;
|
|
|
|
}
|
|
|
|
} else {
|
2006-08-30 16:23:24 +00:00
|
|
|
$model = new $model;
|
2006-06-15 12:12:46 +00:00
|
|
|
$db =& ConnectionManager::getDataSource($model->useDbConfig);
|
|
|
|
$value = $db->boolean($value);
|
|
|
|
$htmlAttributes['checked'] = $value ? 'checked' : null;
|
|
|
|
$htmlAttributes['value'] = 1;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-30 16:23:24 +00:00
|
|
|
$htmlAttributes = $this->domId($htmlAttributes);
|
2006-06-15 12:12:46 +00:00
|
|
|
$output = $this->hidden($fieldName, array('value' => $notCheckedValue, 'id' => $htmlAttributes['id'] . '_'), true);
|
2006-08-30 16:23:24 +00:00
|
|
|
$output .= sprintf($this->tags['checkbox'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, '', ' '));
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output($output);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Returns the breadcrumb trail as a sequence of »-separated links.
|
|
|
|
*
|
|
|
|
* @param string $separator Text to separate crumbs.
|
2006-03-19 03:26:43 +00:00
|
|
|
* @param string $startText This will be the first crumb, if false it defaults to first crumb in array
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-08-20 21:54:50 +00:00
|
|
|
function getCrumbs($separator = '»', $startText = false) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (count($this->_crumbs)) {
|
|
|
|
$out = array();
|
|
|
|
if ($startText) {
|
|
|
|
$out[] = $this->link($startText, '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($this->_crumbs as $crumb) {
|
|
|
|
$out[] = $this->link($crumb[0], $crumb[1]);
|
|
|
|
}
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output(join($separator, $out));
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2006-02-07 02:19:53 +00:00
|
|
|
* Creates a hidden input field.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname/fieldname"
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-08-30 16:23:24 +00:00
|
|
|
function hidden($fieldName, $htmlAttributes = array()) {
|
|
|
|
$htmlAttributes = $this->__value($htmlAttributes, $fieldName);
|
|
|
|
$htmlAttributes = $this->domId($htmlAttributes);
|
|
|
|
return $this->output(sprintf($this->tags['hidden'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, ' ', ' ')));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a formatted IMG element.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $path Path to the image file, relative to the webroot/img/ directory.
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function image($path, $htmlAttributes = array()) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (strpos($path, '://')) {
|
|
|
|
$url = $path;
|
|
|
|
} else {
|
2007-02-08 07:42:23 +00:00
|
|
|
$url = $this->webroot(IMAGES_URL . $path);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-07-07 16:24:22 +00:00
|
|
|
|
2006-06-15 13:40:02 +00:00
|
|
|
if (!isset($htmlAttributes['alt'])) {
|
|
|
|
$htmlAttributes['alt'] = '';
|
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
return $this->output(sprintf($this->tags['image'], $url, $this->_parseAttributes($htmlAttributes, null, '', ' ')));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a text input widget.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldNamem Name of a field, like this "Modelname/fieldname"
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function input($fieldName, $htmlAttributes = array()) {
|
2006-08-30 16:23:24 +00:00
|
|
|
$htmlAttributes = $this->__value($htmlAttributes, $fieldName);
|
|
|
|
$htmlAttributes = $this->domId($htmlAttributes);
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
if (!isset($htmlAttributes['type'])) {
|
|
|
|
$htmlAttributes['type'] = 'text';
|
|
|
|
}
|
|
|
|
|
2006-08-30 16:23:24 +00:00
|
|
|
if ($this->tagIsInvalid()) {
|
|
|
|
$htmlAttributes = $this->addClass($htmlAttributes, 'form_error');
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-08-30 16:23:24 +00:00
|
|
|
return $this->output(sprintf($this->tags['input'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, ' ', ' ')));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Creates a set of radio widgets.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname/fieldname"
|
|
|
|
* @param array $options Radio button options array
|
|
|
|
* @param array $inbetween String that separates the radio buttons.
|
|
|
|
* @param array $htmlAttributes Array of HTML attributes.
|
2006-08-20 21:54:50 +00:00
|
|
|
* @return string
|
2006-05-26 05:29:17 +00:00
|
|
|
*/
|
2006-08-20 21:54:50 +00:00
|
|
|
function radio($fieldName, $options, $inbetween = null, $htmlAttributes = array()) {
|
2006-06-14 18:02:37 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
$this->setFormTag($fieldName);
|
|
|
|
$value = isset($htmlAttributes['value']) ? $htmlAttributes['value'] : $this->tagValue($fieldName);
|
|
|
|
$out = array();
|
2006-06-14 18:02:37 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
foreach($options as $optValue => $optTitle) {
|
|
|
|
$optionsHere = array('value' => $optValue);
|
|
|
|
$optValue == $value ? $optionsHere['checked'] = 'checked' : null;
|
2007-03-25 02:03:34 +00:00
|
|
|
$parsedOptions = $this->_parseAttributes(array_merge($htmlAttributes, $optionsHere), null, '', ' ');
|
2006-09-01 13:47:21 +00:00
|
|
|
$individualTagName = $this->field() . "_{$optValue}";
|
2006-08-30 16:23:24 +00:00
|
|
|
$out[] = sprintf($this->tags['radio'], $this->model(), $this->field(), $individualTagName, $parsedOptions, $optTitle);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$out = join($inbetween, $out);
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output($out ? $out : null);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Returns a row of formatted and named TABLE headers.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param array $names Array of tablenames.
|
|
|
|
* @param array $trOptions HTML options for TR elements.
|
|
|
|
* @param array $thOptions HTML options for TH elements.
|
2005-12-27 03:33:44 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2006-08-20 21:54:50 +00:00
|
|
|
function tableHeaders($names, $trOptions = null, $thOptions = null) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$out = array();
|
|
|
|
foreach($names as $arg) {
|
2007-03-25 02:03:34 +00:00
|
|
|
$out[] = sprintf($this->tags['tableheader'], $this->_parseAttributes($thOptions), $arg);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
$data = sprintf($this->tags['tablerow'], $this->_parseAttributes($trOptions), join(' ', $out));
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output($data);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
|
|
|
* Returns a formatted string of table rows (TR's with TD's in them).
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param array $data Array of table data
|
|
|
|
* @param array $oddTrOptionsHTML options for odd TR elements
|
|
|
|
* @param array $evenTrOptionsHTML options for even TR elements
|
|
|
|
* @return string Formatted HTML
|
|
|
|
*/
|
2006-08-20 21:54:50 +00:00
|
|
|
function tableCells($data, $oddTrOptions = null, $evenTrOptions = null) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (empty($data[0]) || !is_array($data[0])) {
|
|
|
|
$data = array($data);
|
|
|
|
}
|
2006-11-23 07:51:13 +00:00
|
|
|
static $count = 0;
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
foreach($data as $line) {
|
|
|
|
$count++;
|
|
|
|
$cellsOut = array();
|
|
|
|
|
|
|
|
foreach($line as $cell) {
|
|
|
|
$cellsOut[] = sprintf($this->tags['tablecell'], null, $cell);
|
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
$options = $this->_parseAttributes($count % 2 ? $oddTrOptions : $evenTrOptions);
|
2006-05-26 05:29:17 +00:00
|
|
|
$out[] = sprintf($this->tags['tablerow'], $options, join(' ', $cellsOut));
|
|
|
|
}
|
2006-08-20 21:54:50 +00:00
|
|
|
return $this->output(join("\n", $out));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2006-11-23 17:07:28 +00:00
|
|
|
* Returns value of $fieldName. False if the tag does not exist.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2007-03-17 07:58:22 +00:00
|
|
|
* @param string $fieldName Name of a field, like this "Modelname.fieldname", "Modelname/fieldname" is deprecated
|
2005-12-27 03:33:44 +00:00
|
|
|
* @return unknown Value of the named tag.
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function tagValue($fieldName) {
|
|
|
|
$this->setFormTag($fieldName);
|
2006-11-12 00:12:34 +00:00
|
|
|
if (isset($this->data[$this->model()][$this->field()])) {
|
2006-08-30 16:23:24 +00:00
|
|
|
return h($this->data[$this->model()][$this->field()]);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Returns number of errors in a submitted FORM.
|
|
|
|
*
|
|
|
|
* @return int Number of errors
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function validate() {
|
|
|
|
$args = func_get_args();
|
|
|
|
$errors = call_user_func_array(array(&$this, 'validateErrors'), $args);
|
|
|
|
return count($errors);
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Validates a FORM according to the rules set up in the Model.
|
|
|
|
*
|
|
|
|
* @return int Number of errors
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function validateErrors() {
|
|
|
|
$objects = func_get_args();
|
|
|
|
if (!count($objects)) {
|
|
|
|
return false;
|
|
|
|
}
|
2005-12-27 03:33:44 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
$errors = array();
|
|
|
|
foreach($objects as $object) {
|
|
|
|
$errors = array_merge($errors, $object->invalidFields($object->data));
|
|
|
|
}
|
|
|
|
return $this->validationErrors = (count($errors) ? $errors : false);
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2005-12-27 03:33:44 +00:00
|
|
|
* Returns a formatted error message for given FORM field, NULL if no errors.
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $field A field name, like "Modelname/fieldname"
|
|
|
|
* @param string $text Error message
|
2005-12-27 03:33:44 +00:00
|
|
|
* @return string If there are errors this method returns an error message, else NULL.
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function tagErrorMsg($field, $text) {
|
|
|
|
$error = 1;
|
|
|
|
$this->setFormTag($field);
|
2006-08-30 16:23:24 +00:00
|
|
|
if ($error == $this->tagIsInvalid()) {
|
2006-11-28 21:14:28 +00:00
|
|
|
return sprintf('<div class="error-message">%s</div>', is_array($text) ? (empty($text[$error - 1]) ? 'Error in field' : $text[$error - 1]) : $text);
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
/**
|
|
|
|
* Returns a formatted DIV tag for HTML FORMs.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2007-03-04 15:28:08 +00:00
|
|
|
* @param string $class CSS class name of the div element.
|
|
|
|
* @param string $text String content that will appear inside the div element.
|
|
|
|
* If null, only a start tag will be printed
|
|
|
|
* @param array $attributes Additional HTML attributes of the DIV tag
|
|
|
|
* @param boolean $escape If true, $text will be HTML-escaped
|
|
|
|
* @return string The formatted DIV element
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2007-03-04 15:28:08 +00:00
|
|
|
function div($class = null, $text = null, $attributes = array(), $escape = false) {
|
|
|
|
if ($escape) {
|
|
|
|
$text = h($text);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
if ($class != null && !empty($class)) {
|
|
|
|
$attributes['class'] = $class;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
if ($text === null) {
|
|
|
|
$tag = 'blockstart';
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2007-03-04 15:28:08 +00:00
|
|
|
$tag = 'block';
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
return $this->output(sprintf($this->tags[$tag], $this->_parseAttributes($attributes, null, ' ', ''), $text));
|
2007-03-04 15:28:08 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Returns a formatted P tag.
|
|
|
|
*
|
|
|
|
* @param string $class CSS class name of the p element.
|
|
|
|
* @param string $text String content that will appear inside the p element.
|
|
|
|
* @param array $attributes Additional HTML attributes of the P tag
|
|
|
|
* @param boolean $escape If true, $text will be HTML-escaped
|
|
|
|
* @return string The formatted P element
|
|
|
|
*/
|
|
|
|
function para($class, $text, $attributes = array(), $escape = false) {
|
|
|
|
if ($escape) {
|
|
|
|
$text = h($text);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
if ($class != null && !empty($class)) {
|
|
|
|
$attributes['class'] = $class;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
if ($text === null) {
|
|
|
|
$tag = 'parastart';
|
|
|
|
} else {
|
|
|
|
$tag = 'para';
|
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
return $this->output(sprintf($this->tags[$tag], $this->_parseAttributes($attributes, null, ' ', ''), $text));
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-03-04 15:28:08 +00:00
|
|
|
/**#@-*/
|
2006-02-18 23:42:21 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* Deprecated methods
|
|
|
|
*************************************************************************/
|
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::file
|
|
|
|
*/
|
|
|
|
function file($fieldName, $htmlAttributes = array()) {
|
|
|
|
trigger_error(__('(HtmlHelper::file) Deprecated: Use FormHelper::file instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->file($fieldName, $htmlAttributes);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::submit
|
|
|
|
*/
|
|
|
|
function submit($caption = 'Submit', $htmlAttributes = array()) {
|
|
|
|
trigger_error(__('(HtmlHelper::submit) Deprecated: Use FormHelper::submit instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->submit($caption, $htmlAttributes);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::select
|
|
|
|
*/
|
|
|
|
function selectTag($fieldName, $optionElements, $selected = array(), $selectAttr = array(), $optionAttr = array(), $showEmpty = true) {
|
|
|
|
trigger_error(__('(HtmlHelper::selectTag) Deprecated: Use FormHelper::select instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->select($fieldName, $optionElements, $selected, $selectAttr, $showEmpty);
|
|
|
|
}
|
|
|
|
/**
|
2006-11-25 08:55:16 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::create
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-10-18 18:07:55 +00:00
|
|
|
function formTag($target = null, $type = 'post', $htmlAttributes = array()) {
|
2006-12-22 22:49:47 +00:00
|
|
|
trigger_error(__('(HtmlHelper::formTag) Deprecated: Use FormHelper::create instead'), E_USER_WARNING);
|
2006-06-17 13:57:44 +00:00
|
|
|
$htmlAttributes['action'] = $this->url($target);
|
|
|
|
$htmlAttributes['method'] = low($type) == 'get' ? 'get' : 'post';
|
2006-05-26 05:29:17 +00:00
|
|
|
$type == 'file' ? $htmlAttributes['enctype'] = 'multipart/form-data' : null;
|
2007-04-05 21:20:08 +00:00
|
|
|
$append = '';
|
2005-12-27 03:33:44 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (isset($this->params['_Token']) && !empty($this->params['_Token'])) {
|
2007-04-05 21:20:08 +00:00
|
|
|
$append .= '<p style="display: inline; margin: 0px; padding: 0px;">';
|
|
|
|
$append .= $this->hidden('_Token/key', array('value' => $this->params['_Token']['key'], 'id' => '_TokenKey' . mt_rand()), true);
|
|
|
|
$append .= '</p>';
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-03-08 03:13:32 +00:00
|
|
|
|
2007-04-05 21:20:08 +00:00
|
|
|
return sprintf($this->tags['form'], $this->parseHtmlOptions($htmlAttributes, null, '')) . $append;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2006-11-25 08:55:16 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see HtmlHelper::link
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function linkEmail($title, $email = null, $options = null) {
|
2006-12-22 22:49:47 +00:00
|
|
|
trigger_error(__('(HtmlHelper::linkEmail) Deprecated: Use HtmlHelper::link instead'), E_USER_WARNING);
|
2006-05-26 05:29:17 +00:00
|
|
|
// if no $email, then title contains the email.
|
2006-06-17 02:33:12 +00:00
|
|
|
if (empty($email)) {
|
|
|
|
$email = $title;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
// does the address contain extra attributes?
|
2006-06-17 02:33:12 +00:00
|
|
|
$match = array();
|
2006-05-26 05:29:17 +00:00
|
|
|
preg_match('!^(.*)(\?.*)$!', $email, $match);
|
|
|
|
|
|
|
|
// plaintext
|
|
|
|
if (empty($options['encode']) || !empty($match[2])) {
|
2006-06-17 02:33:12 +00:00
|
|
|
return sprintf($this->tags['mailto'], $email, $this->parseHtmlOptions($options), $title);
|
|
|
|
} else {
|
|
|
|
// encoded to avoid spiders
|
|
|
|
$email_encoded = null;
|
|
|
|
|
|
|
|
for($ii = 0; $ii < strlen($email); $ii++) {
|
|
|
|
if (preg_match('!\w!', $email[$ii])) {
|
|
|
|
$email_encoded .= '%' . bin2hex($email[$ii]);
|
|
|
|
} else {
|
|
|
|
$email_encoded .= $email[$ii];
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-06-17 02:33:12 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-06-17 02:33:12 +00:00
|
|
|
$title_encoded = null;
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2006-06-17 02:33:12 +00:00
|
|
|
for($ii = 0; $ii < strlen($title); $ii++) {
|
|
|
|
$title_encoded .= preg_match('/^[A-Za-z0-9]$/', $title[$ii]) ? '&#x' . bin2hex($title[$ii]) . ';' : $title[$ii];
|
|
|
|
}
|
|
|
|
return sprintf($this->tags['mailto'], $email_encoded, $this->parseHtmlOptions($options, array('encode')), $title_encoded);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
2006-06-17 02:33:12 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::day
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function dayOptionTag($tagName, $value = null, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::dayOptionTag) Deprecated: Use FormHelper::day instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->day($tagName, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::year
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function yearOptionTag($tagName, $value = null, $minYear = null, $maxYear = null, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::yearOptionTag) Deprecated: Use FormHelper::year instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->year($tagName, $minYear, $maxYear, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::month
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function monthOptionTag($tagName, $value = null, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::monthOptionTag) Deprecated: Use FormHelper::month instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->month($tagName, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::hour
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function hourOptionTag($tagName, $value = null, $format24Hours = false, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::hourOptionTag) Deprecated: Use FormHelper::hour instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->hour($tagName, $format24Hours, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::minute
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function minuteOptionTag($tagName, $value = null, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::minuteOptionTag) Deprecated: Use FormHelper::minute instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->minute($tagName, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::meridian
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function meridianOptionTag($tagName, $value = null, $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::meridianOptionTag) Deprecated: Use FormHelper::meridian instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->meridian($tagName, $selected, $selectAttr, $optionAttr, $showEmpty);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
/**
|
2007-03-04 15:28:08 +00:00
|
|
|
* @deprecated
|
|
|
|
* @see FormHelper::dateTime
|
2005-12-27 03:33:44 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function dateTimeOptionTag($tagName, $dateFormat = 'DMY', $timeFormat = '12', $selected = null, $selectAttr = null, $optionAttr = null, $showEmpty = true) {
|
2007-03-04 15:28:08 +00:00
|
|
|
trigger_error(__('(HtmlHelper::dateTimeOptionTag) Deprecated: Use FormHelper::dateTime instead'), E_USER_WARNING);
|
|
|
|
$this->__loadForm();
|
|
|
|
$form = new FormHelper();
|
|
|
|
$form->Html = $this;
|
|
|
|
return $form->dateTime($tagName, $dateFormat, $timeFormat, $selected, $selectAttr, $optionAttr, $showEmpty);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @deprecated will not be in final release.
|
|
|
|
*/
|
|
|
|
function __loadForm() {
|
|
|
|
uses('view'.DS.'helpers'.DS.'form');
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
2007-03-25 02:03:34 +00:00
|
|
|
?>
|