summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/THead.php
blob: e9381432911e344410de516cfe8b950246453d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<?php
/**
 * THead class file
 *
 * @author Marcus Nyeholt <tanus@users.sourceforge.net> and Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2005 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @version $Revision: $  $Date: $
 * @package System.Web.UI.WebControls
 */

/**
 * THead class
 *
 * This component is used to provide access to the &lt;head&gt; HTML
 * element through prado code. You can access it via the
 *
 * 	<code>
 	$this->Page->Head
 	</code>
 * property.
 *
 * The THead component provides functionality that is also available through
 * the TPage component (it will remain in the TPage component for cases where a THead
 * component is not included on the page), including:
 *
 * - <b>registerScriptFile</b>
 * - <b>registerStyleFile</b>
 *
 * Additionally, there are additional methods
 *
 * - <b>registerScriptBlock</b>
 * 	 <br/>Register script to be output between &lt;script&gt; tags
 * - <b>registerStyleBlock</b>
 * 	 <br/>Register script to be output between &lt;style&gt; tags
 * - <b>registerMetaInfo</b>
 *   <br/>Register information to be output in a &lt;meta&gt; tag
 *
 * Namespace: System.Web.UI.WebControls
 *
 * Properties
 * - <b>Title</b>, string, kept in viewstate
 *   <br/>Gets or sets the &lt;title&gt; of the page
 *
 * Examples
 * - On a page template file, insert the following line to create a THead component,
 * <code>
 *   <com:THead Title="My Prado Page"/>
 * </code>
 * The checkbox will show "Agree" text on its right side. If the user makes any change
 * to the <b>Checked</b> state, the checkAgree() method of the page class will be invoked automatically.
 *
 * @author Marcus Nyeholt <tanus@users.sourceforge.net> and Qiang Xue <qiang.xue@gmail.com>
 * @version $Revision: $  $Date: $
 * @package System.Web.UI.WebControls
 * @since 3.0
 */
class THead extends TControl
{
	/**
	 * @var array list of meta name tags to be loaded by {@link THead}
	 */
	private $_metaTags=array();

	/**
	 * This method is invoked when the control enters 'Init' stage.
	 * The method raises 'Init' event.
	 * If you override this method, be sure to call the parent implementation
	 * so that the event handlers can be invoked.
	 * @param TEventParameter event parameter to be passed to the event handlers
	 */
	protected function onInit($param)
	{
		parent::onInit($param);
		$this->getPage()->setHead($this);
	}

	/**
	 * @return string the page title.
	 */
	public function getTitle()
	{
		return $this->getPage()->getTitle();
	}

	/**
	 * @param string the page's title
	 */
	public function setTitle($value)
	{
		$this->getPage()->setTitle($value);
	}

	/**
	 * Registers a meta tag to be imported with the page body
	 * @param string a key that identifies the meta tag to avoid repetitive registration
	 * @param string the content of the meta tag
	 * @param string the language of the tag
	 * @see isTagRegistered()
	 */
	public function registerMetaTag($key,$metaTag)
	{
		$this->_metaTags[$key] = $metaTag;
	}

	/**
	 * Indicates whether the named meta tag has been registered before.
	 * @param string the name of tag
	 * @param string the lang of the tag
	 * @return boolean
	 * @see registerMetaTag()
	 */
	public function isMetaTagRegistered($key)
	{
		return isset($this->_metaTags[$key]);
	}

	/**
	 * Render the &lt;head&gt; tag
	 * @return the rendering result.
	 */
	public function render($writer)
	{
		$writer->write("<head>\n<title>".THttpUtility::htmlEncode($this->getTitle())."</title>\n");
		foreach($this->_metaTags as $metaTag)
		{
			$metaTag->render($writer);
			$writer->writeLine();
		}
		$cs=$this->getPage()->getClientScript();
		$cs->renderStyleSheetFiles($writer);
		$cs->renderStyleSheets($writer);
		$cs->renderHeadScriptFiles($writer);
		$cs->renderHeadScripts($writer);
		parent::render($writer);
		$writer->write("</head>\n");
	}
}

class TMetaTag extends TComponent
{
	private $_id='';
	private $_httpEquiv='';
	private $_name='';
	private $_content='';
	private $_scheme='';

	public function getID()
	{
		return $this->_id;
	}

	public function setID($value)
	{
		$this->_id=$value;
	}

	public function getHttpEquiv()
	{
		return $this->_httpEquiv;
	}

	public function setHttpEquiv($value)
	{
		$this->_httpEquiv=$value;
	}

	public function getName()
	{
		return $this->_name;
	}

	public function setName($value)
	{
		$this->_name=$value;
	}

	public function getContent()
	{
		return $this->_content;
	}

	public function setContent($value)
	{
		$this->_content=$value;
	}

	public function getScheme()
	{
		return $this->_scheme;
	}

	public function setScheme($value)
	{
		$this->_scheme=$value;
	}

	public function render($writer)
	{
		if($this->_id!=='')
			$writer->addAttribute('id',$this->_id);
		if($this->_name!=='')
			$writer->addAttribute('name',$this->_name);
		if($this->_httpEquiv!=='')
			$writer->addAttribute('http-equiv',$this->_name);
		if($this->_scheme!=='')
			$writer->addAttribute('scheme',$this->_name);
		$writer->addAttribute('content',$this->_name);
		$writer->renderBeginTag('meta');
		$writer->renderEndTag();
	}
}

?>