| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Low-level generator for HTML | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Output | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Sarven Capadisli <csarven@status.net> | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @copyright 2008 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 16:34:01 -08:00
										 |  |  | // Can include XHTML options but these are too fragile in practice.
 | 
					
						
							|  |  |  | define('PAGE_TYPE_PREFS', 'text/html'); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Low-level generator for HTML | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Abstracts some of the code necessary for HTML generation. Especially | 
					
						
							|  |  |  |  * has methods for generating HTML form elements. Note that these have | 
					
						
							|  |  |  |  * been created kind of haphazardly, not with an eye to making a general | 
					
						
							|  |  |  |  * HTML-creation class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Output | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Sarven Capadisli <csarven@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-13 13:38:58 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  * @see      Action | 
					
						
							| 
									
										
										
										
											2009-01-13 13:38:58 -05:00
										 |  |  |  * @see      XMLOutputter | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | class HTMLOutputter extends XMLOutputter | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     protected $DTD = ['doctype' => 'html', | 
					
						
							|  |  |  |         'spec' => '-//W3C//DTD XHTML 1.0 Strict//EN', | 
					
						
							|  |  |  |         'uri' => 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Constructor | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Just wraps the XMLOutputter constructor. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $output URI to output to, default = stdout | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param boolean $indent Whether to indent output, default true | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function __construct($output = 'php://output', $indent = null) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($output, $indent); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Start an HTML document | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-11-09 20:01:46 +01:00
										 |  |  |      * If $type isn't specified, will attempt to do content negotiation. | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * Attempts to do content negotiation for language, also. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $type MIME type to use; default is to do negotation. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @return void | 
					
						
							|  |  |  |      * @throws ClientException | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @todo extract content negotiation code to an HTTP module or class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function startHTML($type = null) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$type) { | 
					
						
							|  |  |  |             $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                 $_SERVER['HTTP_ACCEPT'] : null; | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // XXX: allow content negotiation for RDF, RSS, or XRDS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $cp = common_accept_to_prefs($httpaccept); | 
					
						
							|  |  |  |             $sp = common_accept_to_prefs(PAGE_TYPE_PREFS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $type = common_negotiate_type($cp, $sp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!$type) { | 
					
						
							| 
									
										
										
										
											2010-04-10 21:12:14 +02:00
										 |  |  |                 // TRANS: Client exception 406
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                 throw new ClientException(_('This page is not available in a ' . | 
					
						
							|  |  |  |                     'media type you accept'), 406); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         header('Content-Type: ' . $type); | 
					
						
							| 
									
										
										
										
											2009-02-11 14:45:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         // Output anti-framing headers to prevent clickjacking (respected by newer
 | 
					
						
							| 
									
										
										
										
											2011-06-06 06:08:17 +00:00
										 |  |  |         // browsers).
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         if (common_config('javascript', 'bustframes')) { | 
					
						
							| 
									
										
										
										
											2011-08-05 10:42:18 -04:00
										 |  |  |             header('X-XSS-Protection: 1; mode=block'); // detect XSS Reflection attacks
 | 
					
						
							| 
									
										
										
										
											2011-06-06 06:08:17 +00:00
										 |  |  |             header('X-Frame-Options: SAMEORIGIN'); // no rendering if origin mismatch
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 03:13:11 -08:00
										 |  |  |         $this->extraHeaders(); | 
					
						
							| 
									
										
										
										
											2009-09-30 10:53:04 +00:00
										 |  |  |         if (preg_match("/.*\/.*xml/", $type)) { | 
					
						
							|  |  |  |             // Required for XML documents
 | 
					
						
							| 
									
										
										
										
											2013-09-24 01:17:04 +02:00
										 |  |  |             $this->startXML(); | 
					
						
							| 
									
										
										
										
											2009-08-05 18:55:47 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-04-22 19:44:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->writeDTD(); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 14:45:06 -05:00
										 |  |  |         $language = $this->getLanguage(); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $attrs = [ | 
					
						
							| 
									
										
										
										
											2010-10-29 23:38:00 +00:00
										 |  |  |             'xmlns' => 'http://www.w3.org/1999/xhtml', | 
					
						
							|  |  |  |             'xml:lang' => $language, | 
					
						
							|  |  |  |             'lang' => $language | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2010-10-29 23:38:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         if (Event::handle('StartHtmlElement', [$this, &$attrs])) { | 
					
						
							| 
									
										
										
										
											2010-10-29 23:38:00 +00:00
										 |  |  |             $this->elementStart('html', $attrs); | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             Event::handle('EndHtmlElement', [$this, &$attrs]); | 
					
						
							| 
									
										
										
										
											2010-10-29 23:38:00 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      *  To specify additional HTTP headers for the action | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function extraHeaders() | 
					
						
							| 
									
										
										
										
											2015-04-22 19:44:58 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         // Needs to be overloaded
 | 
					
						
							| 
									
										
										
										
											2015-04-22 19:44:58 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function writeDTD() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->xw->writeDTD( | 
					
						
							|  |  |  |             $this->DTD['doctype'], | 
					
						
							|  |  |  |             $this->DTD['spec'], | 
					
						
							|  |  |  |             $this->DTD['uri'] | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2015-04-22 19:44:58 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function getLanguage() | 
					
						
							| 
									
										
										
										
											2009-02-11 14:45:06 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         // FIXME: correct language for interface
 | 
					
						
							|  |  |  |         return common_language(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function setDTD($doctype, $spec, $uri) | 
					
						
							| 
									
										
										
										
											2009-01-14 17:26:23 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->DTD = ['doctype' => $doctype, 'spec' => $spec, 'uri' => $uri]; | 
					
						
							| 
									
										
										
										
											2009-01-14 17:26:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-02-11 14:45:06 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 03:13:11 -08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      *  Ends an HTML document | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function endHTML() | 
					
						
							| 
									
										
										
										
											2009-01-22 03:13:11 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->elementEnd('html'); | 
					
						
							|  |  |  |         $this->endXML(); | 
					
						
							| 
									
										
										
										
											2009-01-22 03:13:11 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-14 17:26:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Output an HTML text input element | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Despite the name, it is specifically for outputting a | 
					
						
							|  |  |  |      * text input element, not other <input> elements. It outputs | 
					
						
							|  |  |  |      * a cluster of elements, including a <label> and an associated | 
					
						
							|  |  |  |      * instructions span. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2015-02-04 20:52:10 +01:00
										 |  |  |      * If $attrs['type'] does not exist it will be set to 'text'. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							|  |  |  |      * @param string $label text of label for the element | 
					
						
							|  |  |  |      * @param string $value value of the element, default null | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $instructions instructions for valid input | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $name name of the element; if null, the id will be used | 
					
						
							|  |  |  |      * @param bool   $required HTML5 required attribute (exclude when false) | 
					
						
							|  |  |  |      * @param array  $attrs Initial attributes manually set in an array (overwritten by previous options) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @return void | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @todo add a $maxLength parameter | 
					
						
							|  |  |  |      * @todo add a $size parameter | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function input($id, $label, $value = null, $instructions = null, $name = null, $required = false, array $attrs = []) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element('label', ['for' => $id], $label); | 
					
						
							| 
									
										
										
										
											2015-02-04 20:52:10 +01:00
										 |  |  |         if (!array_key_exists('type', $attrs)) { | 
					
						
							|  |  |  |             $attrs['type'] = 'text'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $attrs['id'] = $id; | 
					
						
							| 
									
										
										
										
											2011-04-17 14:29:38 -07:00
										 |  |  |         $attrs['name'] = is_null($name) ? $id : $name; | 
					
						
							| 
									
										
										
										
											2015-03-08 23:29:16 +01:00
										 |  |  |         if (array_key_exists('placeholder', $attrs) && (is_null($attrs['placeholder']) || $attrs['placeholder'] === '')) { | 
					
						
							|  |  |  |             // If placeholder is type-aware equal to '' or null, unset it as we apparently don't want a placeholder value
 | 
					
						
							|  |  |  |             unset($attrs['placeholder']); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // If the placeholder is set use it, or use the label as fallback.
 | 
					
						
							|  |  |  |             $attrs['placeholder'] = isset($attrs['placeholder']) ? $attrs['placeholder'] : $label; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 02:40:36 -04:00
										 |  |  |         if (!is_null($value)) { // value can be 0 or ''
 | 
					
						
							| 
									
										
										
										
											2009-02-03 21:22:41 -08:00
										 |  |  |             $attrs['value'] = $value; | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-04-06 11:27:41 +02:00
										 |  |  |         if (!empty($required)) { | 
					
						
							|  |  |  |             $attrs['required'] = 'required'; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         $this->element('input', $attrs); | 
					
						
							|  |  |  |         if ($instructions) { | 
					
						
							| 
									
										
										
										
											2009-01-16 23:41:46 +00:00
										 |  |  |             $this->element('p', 'form_guide', $instructions); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML checkbox and associated elements | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Note that the value is default 'true' (the string), which can | 
					
						
							|  |  |  |      * be used by Action::boolean() | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							|  |  |  |      * @param string $label text of label for the element | 
					
						
							|  |  |  |      * @param bool   $checked if the box is checked, default false | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $instructions instructions for valid input | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $value value of the checkbox, default 'true' | 
					
						
							|  |  |  |      * @param bool   $disabled show the checkbox disabled, default false | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @todo add a $name parameter | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function checkbox( | 
					
						
							|  |  |  |         $id, | 
					
						
							|  |  |  |         $label, | 
					
						
							|  |  |  |         $checked = false, | 
					
						
							|  |  |  |         $instructions = null, | 
					
						
							|  |  |  |         $value = 'true', | 
					
						
							|  |  |  |         $disabled = false | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $attrs = ['name' => $id, | 
					
						
							|  |  |  |             'type' => 'checkbox', | 
					
						
							|  |  |  |             'class' => 'checkbox', | 
					
						
							|  |  |  |             'id' => $id]; | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         if ($value) { | 
					
						
							| 
									
										
										
										
											2009-02-03 21:22:41 -08:00
										 |  |  |             $attrs['value'] = $value; | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ($checked) { | 
					
						
							|  |  |  |             $attrs['checked'] = 'checked'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($disabled) { | 
					
						
							|  |  |  |             $attrs['disabled'] = 'true'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->element('input', $attrs); | 
					
						
							|  |  |  |         $this->text(' '); | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element( | 
					
						
							|  |  |  |             'label', | 
					
						
							|  |  |  |             ['class' => 'checkbox', | 
					
						
							|  |  |  |                 'for' => $id], | 
					
						
							|  |  |  |             $label | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         $this->text(' '); | 
					
						
							|  |  |  |         if ($instructions) { | 
					
						
							| 
									
										
										
										
											2009-01-16 23:41:46 +00:00
										 |  |  |             $this->element('p', 'form_guide', $instructions); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML combobox/select and associated elements | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * $content is an array of key-value pairs for the dropdown, where | 
					
						
							|  |  |  |      * the key is the option value attribute and the value is the option | 
					
						
							|  |  |  |      * text. (Careful on the overuse of 'value' here.) | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							|  |  |  |      * @param string $label text of label for the element | 
					
						
							|  |  |  |      * @param array $content options array, value => text | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $instructions instructions for valid input | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param bool $blank_select whether to have a blank entry, default false | 
					
						
							|  |  |  |      * @param string $selected selected value, default null | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @todo add a $name parameter | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function dropdown( | 
					
						
							|  |  |  |         $id, | 
					
						
							|  |  |  |         $label, | 
					
						
							|  |  |  |         $content, | 
					
						
							|  |  |  |         $instructions = null, | 
					
						
							|  |  |  |         $blank_select = false, | 
					
						
							|  |  |  |         $selected = null | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element('label', ['for' => $id], $label); | 
					
						
							|  |  |  |         $this->elementStart('select', ['id' => $id, 'name' => $id]); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         if ($blank_select) { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             $this->element('option', ['value' => '']); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |         foreach ($content as $value => $option) { | 
					
						
							|  |  |  |             if ($value == $selected) { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                 $this->element( | 
					
						
							|  |  |  |                     'option', | 
					
						
							|  |  |  |                     ['value' => $value, | 
					
						
							|  |  |  |                         'selected' => 'selected'], | 
					
						
							|  |  |  |                     $option | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                 $this->element('option', ['value' => $value], $option); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->elementEnd('select'); | 
					
						
							|  |  |  |         if ($instructions) { | 
					
						
							| 
									
										
										
										
											2009-01-16 23:41:46 +00:00
										 |  |  |             $this->element('p', 'form_guide', $instructions); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML hidden element | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * $id is re-used as name | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $value hidden element value, default null | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $name name, if different than ID | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function hidden($id, $value, $name = null) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element('input', ['name' => $name ?: $id, | 
					
						
							|  |  |  |             'type' => 'hidden', | 
					
						
							|  |  |  |             'id' => $id, | 
					
						
							|  |  |  |             'value' => $value]); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML password input and associated elements | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							|  |  |  |      * @param string $label text of label for the element | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $instructions instructions for valid input | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @todo add a $name parameter | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function password($id, $label, $instructions = null) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element('label', ['for' => $id], $label); | 
					
						
							|  |  |  |         $attrs = ['name' => $id, | 
					
						
							|  |  |  |             'type' => 'password', | 
					
						
							|  |  |  |             'class' => 'password', | 
					
						
							|  |  |  |             'id' => $id]; | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         $this->element('input', $attrs); | 
					
						
							|  |  |  |         if ($instructions) { | 
					
						
							| 
									
										
										
										
											2009-01-16 23:41:46 +00:00
										 |  |  |             $this->element('p', 'form_guide', $instructions); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML submit input and associated elements | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $label text of the button | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $cls class of the button, default 'submit' | 
					
						
							|  |  |  |      * @param string $name name, if different than ID | 
					
						
							|  |  |  |      * @param string $title title text for the submit button | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @todo add a $name parameter | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function submit($id, $label, $cls = 'submit', $name = null, $title = null) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $this->element('input', ['type' => 'submit', | 
					
						
							|  |  |  |             'id' => $id, | 
					
						
							|  |  |  |             'name' => $name ?: $id, | 
					
						
							|  |  |  |             'class' => $cls, | 
					
						
							|  |  |  |             'value' => $label, | 
					
						
							|  |  |  |             'title' => $title]); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * output a script (almost always javascript) tag | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $src relative or absolute script path | 
					
						
							|  |  |  |      * @param string $type 'type' attribute value of the tag | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function script($src, $type = 'text/javascript') | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         if (Event::handle('StartScriptElement', [$this, &$src, &$type])) { | 
					
						
							| 
									
										
										
										
											2009-12-04 01:57:14 -05:00
										 |  |  |             $url = parse_url($src); | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |             if (empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // XXX: this seems like a big assumption
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-17 12:03:14 -05:00
										 |  |  |                 if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) { | 
					
						
							| 
									
										
										
										
											2015-02-27 12:44:15 +01:00
										 |  |  |                     $src = common_path($src, GNUsocial::isHTTPS()) . '?version=' . GNUSOCIAL_VERSION; | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2015-02-27 12:44:15 +01:00
										 |  |  |                     if (GNUsocial::isHTTPS()) { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                         $server = common_config('javascript', 'sslserver'); | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                         if (empty($server)) { | 
					
						
							| 
									
										
										
										
											2010-10-14 01:35:11 -04:00
										 |  |  |                             if (is_string(common_config('site', 'sslserver')) && | 
					
						
							|  |  |  |                                 mb_strlen(common_config('site', 'sslserver')) > 0) { | 
					
						
							|  |  |  |                                 $server = common_config('site', 'sslserver'); | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                             } elseif (common_config('site', 'server')) { | 
					
						
							| 
									
										
										
										
											2010-10-14 01:35:11 -04:00
										 |  |  |                                 $server = common_config('site', 'server'); | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                             $path = common_config('site', 'path') . '/js/'; | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         } else { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                             $path = common_config('javascript', 'sslpath'); | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                             if (empty($path)) { | 
					
						
							|  |  |  |                                 $path = common_config('javascript', 'path'); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         $protocol = 'https'; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $path = common_config('javascript', 'path'); | 
					
						
							| 
									
										
										
										
											2010-02-11 16:59:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         if (empty($path)) { | 
					
						
							| 
									
										
										
										
											2010-10-14 14:53:20 -04:00
										 |  |  |                             $path = common_config('site', 'path') . '/js/'; | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2010-02-17 12:03:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         $server = common_config('javascript', 'server'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (empty($server)) { | 
					
						
							|  |  |  |                             $server = common_config('site', 'server'); | 
					
						
							| 
									
										
										
										
											2010-02-17 12:03:14 -05:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         $protocol = 'http'; | 
					
						
							| 
									
										
										
										
											2010-02-17 12:03:14 -05:00
										 |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                     if ($path[strlen($path) - 1] != '/') { | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                         $path .= '/'; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if ($path[0] != '/') { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                         $path = '/' . $path; | 
					
						
							| 
									
										
										
										
											2010-10-14 01:00:13 -04:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                     $src = $protocol . '://' . $server . $path . $src . '?version=' . GNUSOCIAL_VERSION; | 
					
						
							| 
									
										
										
										
											2010-02-17 12:03:14 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-12-04 01:57:14 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             $this->element( | 
					
						
							|  |  |  |                 'script', | 
					
						
							|  |  |  |                 ['type' => $type, | 
					
						
							|  |  |  |                     'src' => $src], | 
					
						
							|  |  |  |                 ' ' | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2010-01-27 11:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             Event::handle('EndScriptElement', [$this, $src, $type]); | 
					
						
							| 
									
										
										
										
											2009-12-04 19:44:45 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-12-04 13:39:51 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * output a css link | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $src relative path within the theme directory, or an absolute path | 
					
						
							|  |  |  |      * @param string $theme 'theme' that contains the stylesheet | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |      * @param string media         'media' attribute of the tag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function cssLink($src, $theme = null, $media = null) | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         if (Event::handle('StartCssLinkElement', [$this, &$src, &$theme, &$media])) { | 
					
						
							| 
									
										
										
										
											2009-12-04 01:57:14 -05:00
										 |  |  |             $url = parse_url($src); | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             if (empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) { | 
					
						
							|  |  |  |                 if (file_exists(Theme::file($src, $theme))) { | 
					
						
							|  |  |  |                     $src = Theme::path($src, $theme); | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2015-02-27 12:44:15 +01:00
										 |  |  |                     $src = common_path($src, GNUsocial::isHTTPS()); | 
					
						
							| 
									
										
										
										
											2009-12-04 01:57:14 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |                 $src .= '?version=' . GNUSOCIAL_VERSION; | 
					
						
							| 
									
										
										
										
											2009-08-06 13:05:40 -04:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             $this->element('link', ['rel' => 'stylesheet', | 
					
						
							|  |  |  |                 'type' => 'text/css', | 
					
						
							|  |  |  |                 'href' => $src, | 
					
						
							|  |  |  |                 'media' => $media]); | 
					
						
							|  |  |  |             Event::handle('EndCssLinkElement', [$this, $src, $theme, $media]); | 
					
						
							| 
									
										
										
										
											2009-08-05 20:28:46 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-08-05 19:35:42 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-04 20:19:55 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * output a style (almost always css) tag with inline | 
					
						
							|  |  |  |      * code. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $code code to put in the style tag | 
					
						
							|  |  |  |      * @param string $type 'type' attribute value of the tag | 
					
						
							|  |  |  |      * @param string $media 'media' attribute value of the tag | 
					
						
							| 
									
										
										
										
											2009-12-04 20:19:55 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function style($code, $type = 'text/css', $media = null) | 
					
						
							| 
									
										
										
										
											2009-12-04 20:19:55 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         if (Event::handle('StartStyleElement', [$this, &$code, &$type, &$media])) { | 
					
						
							|  |  |  |             $this->elementStart('style', ['type' => $type, 'media' => $media]); | 
					
						
							| 
									
										
										
										
											2009-12-04 20:19:55 -05:00
										 |  |  |             $this->raw($code); | 
					
						
							|  |  |  |             $this->elementEnd('style'); | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             Event::handle('EndStyleElement', [$this, $code, $type, $media]); | 
					
						
							| 
									
										
										
										
											2009-12-04 20:19:55 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * output an HTML textarea and associated elements | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $id element ID, must be unique on page | 
					
						
							|  |  |  |      * @param string $label text of label for the element | 
					
						
							|  |  |  |      * @param string $content content of the textarea, default none | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * @param string $instructions instructions for valid input | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |      * @param string $name name of textarea; if null, $id will be used | 
					
						
							|  |  |  |      * @param int $cols number of columns | 
					
						
							|  |  |  |      * @param int $rows number of rows | 
					
						
							|  |  |  |      * @param bool $required HTML5 required attribute (exclude when false) | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     public function textarea( | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |         $id, | 
					
						
							|  |  |  |         $label, | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $content = null, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |         $instructions = null, | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         $name = null, | 
					
						
							|  |  |  |         $cols = null, | 
					
						
							|  |  |  |         $rows = null, | 
					
						
							|  |  |  |         $required = false | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->element('label', ['for' => $id], $label); | 
					
						
							|  |  |  |         $attrs = [ | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |             'rows' => 3, | 
					
						
							|  |  |  |             'cols' => 40, | 
					
						
							|  |  |  |             'id' => $id | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |         $attrs['name'] = is_null($name) ? $id : $name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($cols != null) { | 
					
						
							|  |  |  |             $attrs['cols'] = $cols; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($rows != null) { | 
					
						
							|  |  |  |             $attrs['rows'] = $rows; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($required)) { | 
					
						
							|  |  |  |             $attrs['required'] = 'required'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |         $this->element( | 
					
						
							|  |  |  |             'textarea', | 
					
						
							|  |  |  |             $attrs, | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             $content | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:00 -07:00
										 |  |  |         ); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         if ($instructions) { | 
					
						
							| 
									
										
										
										
											2009-01-16 23:41:46 +00:00
										 |  |  |             $this->element('p', 'form_guide', $instructions); | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-09-03 19:42:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Internal script to autofocus the given element on page onload. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $id element ID, must refer to an existing element | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function autofocus($id) | 
					
						
							| 
									
										
										
										
											2009-09-03 19:42:50 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-12-04 20:33:41 -05:00
										 |  |  |         $this->inlineScript( | 
					
						
							| 
									
										
										
										
											2019-05-06 23:58:45 +01:00
										 |  |  |             ' $(document).ready(function() {' . | 
					
						
							|  |  |  |             ' var el = $("#' . $id . '");' . | 
					
						
							|  |  |  |             ' if (el.length) { el.focus(); }' . | 
					
						
							|  |  |  |             ' });' | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * output a script (almost always javascript) tag with inline | 
					
						
							|  |  |  |      * code. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $code code to put in the script tag | 
					
						
							|  |  |  |      * @param string $type 'type' attribute value of the tag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function inlineScript($code, $type = 'text/javascript') | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (Event::handle('StartInlineScriptElement', [$this, &$code, &$type])) { | 
					
						
							|  |  |  |             $this->elementStart('script', ['type' => $type]); | 
					
						
							|  |  |  |             if ($type == 'text/javascript') { | 
					
						
							|  |  |  |                 $this->raw('/*<![CDATA[*/ '); // XHTML compat
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $this->raw($code); | 
					
						
							|  |  |  |             if ($type == 'text/javascript') { | 
					
						
							|  |  |  |                 $this->raw(' /*]]>*/'); // XHTML compat
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $this->elementEnd('script'); | 
					
						
							|  |  |  |             Event::handle('EndInlineScriptElement', [$this, $code, $type]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-09-03 19:42:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-13 11:44:09 -05:00
										 |  |  | } |