1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657 |
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
- namespace yii\helpers;
- use Yii;
- use yii\base\InvalidParamException;
- use yii\db\ActiveRecordInterface;
- use yii\web\Request;
- use yii\base\Model;
- /**
- * BaseHtml provides concrete implementation for [[Html]].
- *
- * Do not use BaseHtml. Use [[Html]] instead.
- *
- * @author Qiang Xue <[email protected]>
- * @since 2.0
- */
- class BaseHtml
- {
- /**
- * @var array list of void elements (element name => 1)
- * @see http://www.w3.org/TR/html-markup/syntax.html#void-element
- */
- public static $voidElements = [
- 'area' => 1,
- 'base' => 1,
- 'br' => 1,
- 'col' => 1,
- 'command' => 1,
- 'embed' => 1,
- 'hr' => 1,
- 'img' => 1,
- 'input' => 1,
- 'keygen' => 1,
- 'link' => 1,
- 'meta' => 1,
- 'param' => 1,
- 'source' => 1,
- 'track' => 1,
- 'wbr' => 1,
- ];
- /**
- * @var array the preferred order of attributes in a tag. This mainly affects the order of the attributes
- * that are rendered by [[renderTagAttributes()]].
- */
- public static $attributeOrder = [
- 'type',
- 'id',
- 'class',
- 'name',
- 'value',
- 'href',
- 'src',
- 'action',
- 'method',
- 'selected',
- 'checked',
- 'readonly',
- 'disabled',
- 'multiple',
- 'size',
- 'maxlength',
- 'width',
- 'height',
- 'rows',
- 'cols',
- 'alt',
- 'title',
- 'rel',
- 'media',
- ];
- /**
- * Encodes special characters into HTML entities.
- * The [[yii\base\Application::charset|application charset]] will be used for encoding.
- * @param string $content the content to be encoded
- * @param boolean $doubleEncode whether to encode HTML entities in `$content`. If false,
- * HTML entities in `$content` will not be further encoded.
- * @return string the encoded content
- * @see decode()
- * @see http://www.php.net/manual/en/function.htmlspecialchars.php
- */
- public static function encode($content, $doubleEncode = true)
- {
- return htmlspecialchars($content, ENT_QUOTES, Yii::$app->charset, $doubleEncode);
- }
- /**
- * Decodes special HTML entities back to the corresponding characters.
- * This is the opposite of [[encode()]].
- * @param string $content the content to be decoded
- * @return string the decoded content
- * @see encode()
- * @see http://www.php.net/manual/en/function.htmlspecialchars-decode.php
- */
- public static function decode($content)
- {
- return htmlspecialchars_decode($content, ENT_QUOTES);
- }
- /**
- * Generates a complete HTML tag.
- * @param string $name the tag name
- * @param string $content the content to be enclosed between the start and end tags. It will not be HTML-encoded.
- * If this is coming from end users, you should consider [[encode()]] it to prevent XSS attacks.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated HTML tag
- * @see beginTag()
- * @see endTag()
- */
- public static function tag($name, $content = '', $options = [])
- {
- $html = "<$name" . static::renderTagAttributes($options) . '>';
- return isset(static::$voidElements[strtolower($name)]) ? $html : "$html$content</$name>";
- }
- /**
- * Generates a start tag.
- * @param string $name the tag name
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated start tag
- * @see endTag()
- * @see tag()
- */
- public static function beginTag($name, $options = [])
- {
- return "<$name" . static::renderTagAttributes($options) . '>';
- }
- /**
- * Generates an end tag.
- * @param string $name the tag name
- * @return string the generated end tag
- * @see beginTag()
- * @see tag()
- */
- public static function endTag($name)
- {
- return "</$name>";
- }
- /**
- * Generates a style tag.
- * @param string $content the style content
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * If the options does not contain "type", a "type" attribute with value "text/css" will be used.
- * @return string the generated style tag
- */
- public static function style($content, $options = [])
- {
- return static::tag('style', $content, $options);
- }
- /**
- * Generates a script tag.
- * @param string $content the script content
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * If the options does not contain "type", a "type" attribute with value "text/javascript" will be rendered.
- * @return string the generated script tag
- */
- public static function script($content, $options = [])
- {
- return static::tag('script', $content, $options);
- }
- /**
- * Generates a link tag that refers to an external CSS file.
- * @param array|string $url the URL of the external CSS file. This parameter will be processed by [[url()]].
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated link tag
- * @see url()
- */
- public static function cssFile($url, $options = [])
- {
- if (!isset($options['rel'])) {
- $options['rel'] = 'stylesheet';
- }
- $options['href'] = static::url($url);
- return static::tag('link', '', $options);
- }
- /**
- * Generates a script tag that refers to an external JavaScript file.
- * @param string $url the URL of the external JavaScript file. This parameter will be processed by [[url()]].
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated script tag
- * @see url()
- */
- public static function jsFile($url, $options = [])
- {
- $options['src'] = static::url($url);
- return static::tag('script', '', $options);
- }
- /**
- * Generates a form start tag.
- * @param array|string $action the form action URL. This parameter will be processed by [[url()]].
- * @param string $method the form submission method, such as "post", "get", "put", "delete" (case-insensitive).
- * Since most browsers only support "post" and "get", if other methods are given, they will
- * be simulated using "post", and a hidden input will be added which contains the actual method type.
- * See [[\yii\web\Request::restVar]] for more details.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated form start tag.
- * @see endForm()
- */
- public static function beginForm($action = '', $method = 'post', $options = [])
- {
- $action = static::url($action);
- $hiddenInputs = [];
- $request = Yii::$app->getRequest();
- if ($request instanceof Request) {
- if (strcasecmp($method, 'get') && strcasecmp($method, 'post')) {
- // simulate PUT, DELETE, etc. via POST
- $hiddenInputs[] = static::hiddenInput($request->restVar, $method);
- $method = 'post';
- }
- if ($request->enableCsrfValidation && !strcasecmp($method, 'post')) {
- $hiddenInputs[] = static::hiddenInput($request->csrfVar, $request->getCsrfToken());
- }
- }
- if (!strcasecmp($method, 'get') && ($pos = strpos($action, '?')) !== false) {
- // query parameters in the action are ignored for GET method
- // we use hidden fields to add them back
- foreach (explode('&', substr($action, $pos + 1)) as $pair) {
- if (($pos1 = strpos($pair, '=')) !== false) {
- $hiddenInputs[] = static::hiddenInput(
- urldecode(substr($pair, 0, $pos1)),
- urldecode(substr($pair, $pos1 + 1))
- );
- } else {
- $hiddenInputs[] = static::hiddenInput(urldecode($pair), '');
- }
- }
- $action = substr($action, 0, $pos);
- }
- $options['action'] = $action;
- $options['method'] = $method;
- $form = static::beginTag('form', $options);
- if (!empty($hiddenInputs)) {
- $form .= "\n" . implode("\n", $hiddenInputs);
- }
- return $form;
- }
- /**
- * Generates a form end tag.
- * @return string the generated tag
- * @see beginForm()
- */
- public static function endForm()
- {
- return '</form>';
- }
- /**
- * Generates a hyperlink tag.
- * @param string $text link body. It will NOT be HTML-encoded. Therefore you can pass in HTML code
- * such as an image tag. If this is coming from end users, you should consider [[encode()]]
- * it to prevent XSS attacks.
- * @param array|string|null $url the URL for the hyperlink tag. This parameter will be processed by [[url()]]
- * and will be used for the "href" attribute of the tag. If this parameter is null, the "href" attribute
- * will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated hyperlink
- * @see url()
- */
- public static function a($text, $url = null, $options = [])
- {
- if ($url !== null) {
- $options['href'] = static::url($url);
- }
- return static::tag('a', $text, $options);
- }
- /**
- * Generates a mailto hyperlink.
- * @param string $text link body. It will NOT be HTML-encoded. Therefore you can pass in HTML code
- * such as an image tag. If this is coming from end users, you should consider [[encode()]]
- * it to prevent XSS attacks.
- * @param string $email email address. If this is null, the first parameter (link body) will be treated
- * as the email address and used.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated mailto link
- */
- public static function mailto($text, $email = null, $options = [])
- {
- $options['href'] = 'mailto:' . ($email === null ? $text : $email);
- return static::tag('a', $text, $options);
- }
- /**
- * Generates an image tag.
- * @param string $src the image URL. This parameter will be processed by [[url()]].
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated image tag
- */
- public static function img($src, $options = [])
- {
- $options['src'] = static::url($src);
- if (!isset($options['alt'])) {
- $options['alt'] = '';
- }
- return static::tag('img', '', $options);
- }
- /**
- * Generates a label tag.
- * @param string $content label text. It will NOT be HTML-encoded. Therefore you can pass in HTML code
- * such as an image tag. If this is is coming from end users, you should [[encode()]]
- * it to prevent XSS attacks.
- * @param string $for the ID of the HTML element that this label is associated with.
- * If this is null, the "for" attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated label tag
- */
- public static function label($content, $for = null, $options = [])
- {
- $options['for'] = $for;
- return static::tag('label', $content, $options);
- }
- /**
- * Generates a button tag.
- * @param string $content the content enclosed within the button tag. It will NOT be HTML-encoded.
- * Therefore you can pass in HTML code such as an image tag. If this is is coming from end users,
- * you should consider [[encode()]] it to prevent XSS attacks.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function button($content = 'Button', $options = [])
- {
- return static::tag('button', $content, $options);
- }
- /**
- * Generates a submit button tag.
- * @param string $content the content enclosed within the button tag. It will NOT be HTML-encoded.
- * Therefore you can pass in HTML code such as an image tag. If this is is coming from end users,
- * you should consider [[encode()]] it to prevent XSS attacks.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated submit button tag
- */
- public static function submitButton($content = 'Submit', $options = [])
- {
- $options['type'] = 'submit';
- return static::button($content, $options);
- }
- /**
- * Generates a reset button tag.
- * @param string $content the content enclosed within the button tag. It will NOT be HTML-encoded.
- * Therefore you can pass in HTML code such as an image tag. If this is is coming from end users,
- * you should consider [[encode()]] it to prevent XSS attacks.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated reset button tag
- */
- public static function resetButton($content = 'Reset', $options = [])
- {
- $options['type'] = 'reset';
- return static::button($content, $options);
- }
- /**
- * Generates an input type of the given type.
- * @param string $type the type attribute.
- * @param string $name the name attribute. If it is null, the name attribute will not be generated.
- * @param string $value the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated input tag
- */
- public static function input($type, $name = null, $value = null, $options = [])
- {
- $options['type'] = $type;
- $options['name'] = $name;
- $options['value'] = $value === null ? null : (string)$value;
- return static::tag('input', '', $options);
- }
- /**
- * Generates an input button.
- * @param string $label the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function buttonInput($label = 'Button', $options = [])
- {
- $options['type'] = 'button';
- $options['value'] = $label;
- return static::tag('input', '', $options);
- }
- /**
- * Generates a submit input button.
- * @param string $label the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function submitInput($label = 'Submit', $options = [])
- {
- $options['type'] = 'submit';
- $options['value'] = $label;
- return static::tag('input', '', $options);
- }
- /**
- * Generates a reset input button.
- * @param string $label the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the attributes of the button tag. The values will be HTML-encoded using [[encode()]].
- * Attributes whose value is null will be ignored and not put in the tag returned.
- * @return string the generated button tag
- */
- public static function resetInput($label = 'Reset', $options = [])
- {
- $options['type'] = 'reset';
- $options['value'] = $label;
- return static::tag('input', '', $options);
- }
- /**
- * Generates a text input field.
- * @param string $name the name attribute.
- * @param string $value the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function textInput($name, $value = null, $options = [])
- {
- return static::input('text', $name, $value, $options);
- }
- /**
- * Generates a hidden input field.
- * @param string $name the name attribute.
- * @param string $value the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function hiddenInput($name, $value = null, $options = [])
- {
- return static::input('hidden', $name, $value, $options);
- }
- /**
- * Generates a password input field.
- * @param string $name the name attribute.
- * @param string $value the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function passwordInput($name, $value = null, $options = [])
- {
- return static::input('password', $name, $value, $options);
- }
- /**
- * Generates a file input field.
- * To use a file input field, you should set the enclosing form's "enctype" attribute to
- * be "multipart/form-data". After the form is submitted, the uploaded file information
- * can be obtained via $_FILES[$name] (see PHP documentation).
- * @param string $name the name attribute.
- * @param string $value the value attribute. If it is null, the value attribute will not be generated.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated button tag
- */
- public static function fileInput($name, $value = null, $options = [])
- {
- return static::input('file', $name, $value, $options);
- }
- /**
- * Generates a text area input.
- * @param string $name the input name
- * @param string $value the input value. Note that it will be encoded using [[encode()]].
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * @return string the generated text area tag
- */
- public static function textarea($name, $value = '', $options = [])
- {
- $options['name'] = $name;
- return static::tag('textarea', static::encode($value), $options);
- }
- /**
- * Generates a radio button input.
- * @param string $name the name attribute.
- * @param boolean $checked whether the radio button should be checked.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - uncheck: string, the value associated with the uncheck state of the radio button. When this attribute
- * is present, a hidden input will be generated so that if the radio button is not checked and is submitted,
- * the value of this attribute will still be submitted to the server via the hidden input.
- * - label: string, a label displayed next to the radio button. It will NOT be HTML-encoded. Therefore you can pass
- * in HTML code such as an image tag. If this is is coming from end users, you should [[encode()]] it to prevent XSS attacks.
- * When this option is specified, the radio button will be enclosed by a label tag.
- * - labelOptions: array, the HTML attributes for the label tag. This is only used when the "label" option is specified.
- * - container: array|boolean, the HTML attributes for the container tag. This is only used when the "label" option is specified.
- * If it is false, no container will be rendered. If it is an array or not, a "div" container will be rendered
- * around the the radio button.
- *
- * The rest of the options will be rendered as the attributes of the resulting radio button tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated radio button tag
- */
- public static function radio($name, $checked = false, $options = [])
- {
- $options['checked'] = (boolean)$checked;
- $value = array_key_exists('value', $options) ? $options['value'] : '1';
- if (isset($options['uncheck'])) {
- // add a hidden field so that if the radio button is not selected, it still submits a value
- $hidden = static::hiddenInput($name, $options['uncheck']);
- unset($options['uncheck']);
- } else {
- $hidden = '';
- }
- if (isset($options['label'])) {
- $label = $options['label'];
- $labelOptions = isset($options['labelOptions']) ? $options['labelOptions'] : [];
- $container = isset($options['container']) ? $options['container'] : ['class' => 'radio'];
- unset($options['label'], $options['labelOptions'], $options['container']);
- $content = static::label(static::input('radio', $name, $value, $options) . ' ' . $label, null, $labelOptions);
- if (is_array($container)) {
- return $hidden . static::tag('div', $content, $container);
- } else {
- return $hidden . $content;
- }
- } else {
- return $hidden . static::input('radio', $name, $value, $options);
- }
- }
- /**
- * Generates a checkbox input.
- * @param string $name the name attribute.
- * @param boolean $checked whether the checkbox should be checked.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - uncheck: string, the value associated with the uncheck state of the checkbox. When this attribute
- * is present, a hidden input will be generated so that if the checkbox is not checked and is submitted,
- * the value of this attribute will still be submitted to the server via the hidden input.
- * - label: string, a label displayed next to the checkbox. It will NOT be HTML-encoded. Therefore you can pass
- * in HTML code such as an image tag. If this is is coming from end users, you should [[encode()]] it to prevent XSS attacks.
- * When this option is specified, the checkbox will be enclosed by a label tag.
- * - labelOptions: array, the HTML attributes for the label tag. This is only used when the "label" option is specified.
- * - container: array|boolean, the HTML attributes for the container tag. This is only used when the "label" option is specified.
- * If it is false, no container will be rendered. If it is an array or not, a "div" container will be rendered
- * around the the radio button.
- *
- * The rest of the options will be rendered as the attributes of the resulting checkbox tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated checkbox tag
- */
- public static function checkbox($name, $checked = false, $options = [])
- {
- $options['checked'] = (boolean)$checked;
- $value = array_key_exists('value', $options) ? $options['value'] : '1';
- if (isset($options['uncheck'])) {
- // add a hidden field so that if the checkbox is not selected, it still submits a value
- $hidden = static::hiddenInput($name, $options['uncheck']);
- unset($options['uncheck']);
- } else {
- $hidden = '';
- }
- if (isset($options['label'])) {
- $label = $options['label'];
- $labelOptions = isset($options['labelOptions']) ? $options['labelOptions'] : [];
- $container = isset($options['container']) ? $options['container'] : ['class' => 'checkbox'];
- unset($options['label'], $options['labelOptions'], $options['container']);
- $content = static::label(static::input('checkbox', $name, $value, $options) . ' ' . $label, null, $labelOptions);
- if (is_array($container)) {
- return $hidden . static::tag('div', $content, $container);
- } else {
- return $hidden . $content;
- }
- } else {
- return $hidden . static::input('checkbox', $name, $value, $options);
- }
- }
- /**
- * Generates a drop-down list.
- * @param string $name the input name
- * @param string $selection the selected value
- * @param array $items the option data items. The array keys are option values, and the array values
- * are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too).
- * For each sub-array, an option group will be generated whose label is the key associated with the sub-array.
- * If you have a list of data models, you may convert them into the format described above using
- * [[\yii\helpers\ArrayHelper::map()]].
- *
- * Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in
- * the labels will also be HTML-encoded.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - prompt: string, a prompt text to be displayed as the first option;
- * - options: array, the attributes for the select option tags. The array keys must be valid option values,
- * and the array values are the extra attributes for the corresponding option tags. For example,
- *
- * ~~~
- * [
- * 'value1' => ['disabled' => true],
- * 'value2' => ['label' => 'value 2'],
- * ];
- * ~~~
- *
- * - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
- * except that the array keys represent the optgroup labels specified in $items.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated drop-down list tag
- */
- public static function dropDownList($name, $selection = null, $items = [], $options = [])
- {
- if (!empty($options['multiple'])) {
- return static::listBox($name, $selection, $items, $options);
- }
- $options['name'] = $name;
- $selectOptions = static::renderSelectOptions($selection, $items, $options);
- return static::tag('select', "\n" . $selectOptions . "\n", $options);
- }
- /**
- * Generates a list box.
- * @param string $name the input name
- * @param string|array $selection the selected value(s)
- * @param array $items the option data items. The array keys are option values, and the array values
- * are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too).
- * For each sub-array, an option group will be generated whose label is the key associated with the sub-array.
- * If you have a list of data models, you may convert them into the format described above using
- * [[\yii\helpers\ArrayHelper::map()]].
- *
- * Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in
- * the labels will also be HTML-encoded.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - prompt: string, a prompt text to be displayed as the first option;
- * - options: array, the attributes for the select option tags. The array keys must be valid option values,
- * and the array values are the extra attributes for the corresponding option tags. For example,
- *
- * ~~~
- * [
- * 'value1' => ['disabled' => true],
- * 'value2' => ['label' => 'value 2'],
- * ];
- * ~~~
- *
- * - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
- * except that the array keys represent the optgroup labels specified in $items.
- * - unselect: string, the value that will be submitted when no option is selected.
- * When this attribute is set, a hidden field will be generated so that if no option is selected in multiple
- * mode, we can still obtain the posted unselect value.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated list box tag
- */
- public static function listBox($name, $selection = null, $items = [], $options = [])
- {
- if (!array_key_exists('size', $options)) {
- $options['size'] = 4;
- }
- if (!empty($options['multiple']) && substr($name, -2) !== '[]') {
- $name .= '[]';
- }
- $options['name'] = $name;
- if (isset($options['unselect'])) {
- // add a hidden field so that if the list box has no option being selected, it still submits a value
- if (substr($name, -2) === '[]') {
- $name = substr($name, 0, -2);
- }
- $hidden = static::hiddenInput($name, $options['unselect']);
- unset($options['unselect']);
- } else {
- $hidden = '';
- }
- $selectOptions = static::renderSelectOptions($selection, $items, $options);
- return $hidden . static::tag('select', "\n" . $selectOptions . "\n", $options);
- }
- /**
- * Generates a list of checkboxes.
- * A checkbox list allows multiple selection, like [[listBox()]].
- * As a result, the corresponding submitted value is an array.
- * @param string $name the name attribute of each checkbox.
- * @param string|array $selection the selected value(s).
- * @param array $items the data item used to generate the checkboxes.
- * The array values are the labels, while the array keys are the corresponding checkbox values.
- * @param array $options options (name => config) for the checkbox list container tag.
- * The following options are specially handled:
- *
- * - tag: string, the tag name of the container element.
- * - unselect: string, the value that should be submitted when none of the checkboxes is selected.
- * By setting this option, a hidden input will be generated.
- * - encode: boolean, whether to HTML-encode the checkbox labels. Defaults to true.
- * This option is ignored if `item` option is set.
- * - separator: string, the HTML code that separates items.
- * - itemOptions: array, the options for generating the radio button tag using [[checkbox()]].
- * - item: callable, a callback that can be used to customize the generation of the HTML code
- * corresponding to a single item in $items. The signature of this callback must be:
- *
- * ~~~
- * function ($index, $label, $name, $checked, $value)
- * ~~~
- *
- * where $index is the zero-based index of the checkbox in the whole list; $label
- * is the label for the checkbox; and $name, $value and $checked represent the name,
- * value and the checked status of the checkbox input, respectively.
- * @return string the generated checkbox list
- */
- public static function checkboxList($name, $selection = null, $items = [], $options = [])
- {
- if (substr($name, -2) !== '[]') {
- $name .= '[]';
- }
- $formatter = isset($options['item']) ? $options['item'] : null;
- $itemOptions = isset($options['itemOptions']) ? $options['itemOptions'] : [];
- $encode = !isset($options['encode']) || $options['encode'];
- $lines = [];
- $index = 0;
- foreach ($items as $value => $label) {
- $checked = $selection !== null &&
- (!is_array($selection) && !strcmp($value, $selection)
- || is_array($selection) && in_array($value, $selection));
- if ($formatter !== null) {
- $lines[] = call_user_func($formatter, $index, $label, $name, $checked, $value);
- } else {
- $lines[] = static::checkbox($name, $checked, array_merge($itemOptions, [
- 'value' => $value,
- 'label' => $encode ? static::encode($label) : $label,
- ]));
- }
- $index++;
- }
- if (isset($options['unselect'])) {
- // add a hidden field so that if the list box has no option being selected, it still submits a value
- $name2 = substr($name, -2) === '[]' ? substr($name, 0, -2) : $name;
- $hidden = static::hiddenInput($name2, $options['unselect']);
- } else {
- $hidden = '';
- }
- $separator = isset($options['separator']) ? $options['separator'] : "\n";
- $tag = isset($options['tag']) ? $options['tag'] : 'div';
- unset($options['tag'], $options['unselect'], $options['encode'], $options['separator'], $options['item'], $options['itemOptions']);
- return $hidden . static::tag($tag, implode($separator, $lines), $options);
- }
- /**
- * Generates a list of radio buttons.
- * A radio button list is like a checkbox list, except that it only allows single selection.
- * @param string $name the name attribute of each radio button.
- * @param string|array $selection the selected value(s).
- * @param array $items the data item used to generate the radio buttons.
- * The array values are the labels, while the array keys are the corresponding radio button values.
- * @param array $options options (name => config) for the radio button list. The following options are supported:
- *
- * - unselect: string, the value that should be submitted when none of the radio buttons is selected.
- * By setting this option, a hidden input will be generated.
- * - encode: boolean, whether to HTML-encode the checkbox labels. Defaults to true.
- * This option is ignored if `item` option is set.
- * - separator: string, the HTML code that separates items.
- * - itemOptions: array, the options for generating the radio button tag using [[radio()]].
- * - item: callable, a callback that can be used to customize the generation of the HTML code
- * corresponding to a single item in $items. The signature of this callback must be:
- *
- * ~~~
- * function ($index, $label, $name, $checked, $value)
- * ~~~
- *
- * where $index is the zero-based index of the radio button in the whole list; $label
- * is the label for the radio button; and $name, $value and $checked represent the name,
- * value and the checked status of the radio button input, respectively.
- * @return string the generated radio button list
- */
- public static function radioList($name, $selection = null, $items = [], $options = [])
- {
- $encode = !isset($options['encode']) || $options['encode'];
- $formatter = isset($options['item']) ? $options['item'] : null;
- $itemOptions = isset($options['itemOptions']) ? $options['itemOptions'] : [];
- $lines = [];
- $index = 0;
- foreach ($items as $value => $label) {
- $checked = $selection !== null &&
- (!is_array($selection) && !strcmp($value, $selection)
- || is_array($selection) && in_array($value, $selection));
- if ($formatter !== null) {
- $lines[] = call_user_func($formatter, $index, $label, $name, $checked, $value);
- } else {
- $lines[] = static::radio($name, $checked, array_merge($itemOptions, [
- 'value' => $value,
- 'label' => $encode ? static::encode($label) : $label,
- ]));
- }
- $index++;
- }
- $separator = isset($options['separator']) ? $options['separator'] : "\n";
- if (isset($options['unselect'])) {
- // add a hidden field so that if the list box has no option being selected, it still submits a value
- $hidden = static::hiddenInput($name, $options['unselect']);
- } else {
- $hidden = '';
- }
- $tag = isset($options['tag']) ? $options['tag'] : 'div';
- unset($options['tag'], $options['unselect'], $options['encode'], $options['separator'], $options['item'], $options['itemOptions']);
- return $hidden . static::tag($tag, implode($separator, $lines), $options);
- }
- /**
- * Generates an unordered list.
- * @param array|\Traversable $items the items for generating the list. Each item generates a single list item.
- * Note that items will be automatically HTML encoded if `$options['encode']` is not set or true.
- * @param array $options options (name => config) for the radio button list. The following options are supported:
- *
- * - encode: boolean, whether to HTML-encode the items. Defaults to true.
- * This option is ignored if the `item` option is specified.
- * - itemOptions: array, the HTML attributes for the `li` tags. This option is ignored if the `item` option is specified.
- * - item: callable, a callback that is used to generate each individual list item.
- * The signature of this callback must be:
- *
- * ~~~
- * function ($item, $index)
- * ~~~
- *
- * where $index is the array key corresponding to `$item` in `$items`. The callback should return
- * the whole list item tag.
- *
- * @return string the generated unordered list. An empty string is returned if `$items` is empty.
- */
- public static function ul($items, $options = [])
- {
- if (empty($items)) {
- return '';
- }
- $tag = isset($options['tag']) ? $options['tag'] : 'ul';
- $encode = !isset($options['encode']) || $options['encode'];
- $formatter = isset($options['item']) ? $options['item'] : null;
- $itemOptions = isset($options['itemOptions']) ? $options['itemOptions'] : [];
- unset($options['tag'], $options['encode'], $options['item'], $options['itemOptions']);
- $results = [];
- foreach ($items as $index => $item) {
- if ($formatter !== null) {
- $results[] = call_user_func($formatter, $item, $index);
- } else {
- $results[] = static::tag('li', $encode ? static::encode($item) : $item, $itemOptions);
- }
- }
- return static::tag($tag, "\n" . implode("\n", $results) . "\n", $options);
- }
- /**
- * Generates an ordered list.
- * @param array|\Traversable $items the items for generating the list. Each item generates a single list item.
- * Note that items will be automatically HTML encoded if `$options['encode']` is not set or true.
- * @param array $options options (name => config) for the radio button list. The following options are supported:
- *
- * - encode: boolean, whether to HTML-encode the items. Defaults to true.
- * This option is ignored if the `item` option is specified.
- * - itemOptions: array, the HTML attributes for the `li` tags. This option is ignored if the `item` option is specified.
- * - item: callable, a callback that is used to generate each individual list item.
- * The signature of this callback must be:
- *
- * ~~~
- * function ($item, $index)
- * ~~~
- *
- * where $index is the array key corresponding to `$item` in `$items`. The callback should return
- * the whole list item tag.
- *
- * @return string the generated ordered list. An empty string is returned if `$items` is empty.
- */
- public static function ol($items, $options = [])
- {
- $options['tag'] = 'ol';
- return static::ul($items, $options);
- }
- /**
- * Generates a label tag for the given model attribute.
- * The label text is the label associated with the attribute, obtained via [[Model::getAttributeLabel()]].
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * If a value is null, the corresponding attribute will not be rendered.
- * The following options are specially handled:
- *
- * - label: this specifies the label to be displayed. Note that this will NOT be [[encoded()]].
- * If this is not set, [[Model::getAttributeLabel()]] will be called to get the label for display
- * (after encoding).
- *
- * @return string the generated label tag
- */
- public static function activeLabel($model, $attribute, $options = [])
- {
- $for = array_key_exists('for', $options) ? $options['for'] : static::getInputId($model, $attribute);
- $attribute = static::getAttributeName($attribute);
- $label = isset($options['label']) ? $options['label'] : static::encode($model->getAttributeLabel($attribute));
- unset($options['label'], $options['for']);
- return static::label($label, $for, $options);
- }
- /**
- * Generates a tag that contains the first validation error of the specified model attribute.
- * Note that even if there is no validation error, this method will still return an empty error tag.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. The values will be HTML-encoded
- * using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * The following options are specially handled:
- *
- * - tag: this specifies the tag name. If not set, "div" will be used.
- *
- * @return string the generated label tag
- */
- public static function error($model, $attribute, $options = [])
- {
- $attribute = static::getAttributeName($attribute);
- $error = $model->getFirstError($attribute);
- $tag = isset($options['tag']) ? $options['tag'] : 'div';
- unset($options['tag']);
- return Html::tag($tag, Html::encode($error), $options);
- }
- /**
- * Generates an input tag for the given model attribute.
- * This method will generate the "name" and "value" tag attributes automatically for the model attribute
- * unless they are explicitly specified in `$options`.
- * @param string $type the input type (e.g. 'text', 'password')
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated input tag
- */
- public static function activeInput($type, $model, $attribute, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $value = isset($options['value']) ? $options['value'] : static::getAttributeValue($model, $attribute);
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::input($type, $name, $value, $options);
- }
- /**
- * Generates a text input tag for the given model attribute.
- * This method will generate the "name" and "value" tag attributes automatically for the model attribute
- * unless they are explicitly specified in `$options`.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated input tag
- */
- public static function activeTextInput($model, $attribute, $options = [])
- {
- return static::activeInput('text', $model, $attribute, $options);
- }
- /**
- * Generates a hidden input tag for the given model attribute.
- * This method will generate the "name" and "value" tag attributes automatically for the model attribute
- * unless they are explicitly specified in `$options`.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated input tag
- */
- public static function activeHiddenInput($model, $attribute, $options = [])
- {
- return static::activeInput('hidden', $model, $attribute, $options);
- }
- /**
- * Generates a password input tag for the given model attribute.
- * This method will generate the "name" and "value" tag attributes automatically for the model attribute
- * unless they are explicitly specified in `$options`.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated input tag
- */
- public static function activePasswordInput($model, $attribute, $options = [])
- {
- return static::activeInput('password', $model, $attribute, $options);
- }
- /**
- * Generates a file input tag for the given model attribute.
- * This method will generate the "name" and "value" tag attributes automatically for the model attribute
- * unless they are explicitly specified in `$options`.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated input tag
- */
- public static function activeFileInput($model, $attribute, $options = [])
- {
- // add a hidden field so that if a model only has a file field, we can
- // still use isset($_POST[$modelClass]) to detect if the input is submitted
- return static::activeHiddenInput($model, $attribute, ['id' => null, 'value' => ''])
- . static::activeInput('file', $model, $attribute, $options);
- }
- /**
- * Generates a textarea tag for the given model attribute.
- * The model attribute value will be used as the content in the textarea.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. These will be rendered as
- * the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
- * @return string the generated textarea tag
- */
- public static function activeTextarea($model, $attribute, $options = [])
- {
- $name = static::getInputName($model, $attribute);
- $value = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::textarea($name, $value, $options);
- }
- /**
- * Generates a radio button tag for the given model attribute.
- * This method will generate the "checked" tag attribute according to the model attribute value.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - uncheck: string, the value associated with the uncheck state of the radio button. If not set,
- * it will take the default value '0'. This method will render a hidden input so that if the radio button
- * is not checked and is submitted, the value of this attribute will still be submitted to the server
- * via the hidden input.
- * - label: string, a label displayed next to the radio button. It will NOT be HTML-encoded. Therefore you can pass
- * in HTML code such as an image tag. If this is is coming from end users, you should [[encode()]] it to prevent XSS attacks.
- * When this option is specified, the radio button will be enclosed by a label tag.
- * - labelOptions: array, the HTML attributes for the label tag. This is only used when the "label" option is specified.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated radio button tag
- */
- public static function activeRadio($model, $attribute, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $value = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('value', $options)) {
- $options['value'] = '1';
- }
- if (!array_key_exists('uncheck', $options)) {
- $options['uncheck'] = '0';
- }
- $checked = "$value" === "{$options['value']}";
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::radio($name, $checked, $options);
- }
- /**
- * Generates a checkbox tag for the given model attribute.
- * This method will generate the "checked" tag attribute according to the model attribute value.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - uncheck: string, the value associated with the uncheck state of the radio button. If not set,
- * it will take the default value '0'. This method will render a hidden input so that if the radio button
- * is not checked and is submitted, the value of this attribute will still be submitted to the server
- * via the hidden input.
- * - label: string, a label displayed next to the checkbox. It will NOT be HTML-encoded. Therefore you can pass
- * in HTML code such as an image tag. If this is is coming from end users, you should [[encode()]] it to prevent XSS attacks.
- * When this option is specified, the checkbox will be enclosed by a label tag.
- * - labelOptions: array, the HTML attributes for the label tag. This is only used when the "label" option is specified.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated checkbox tag
- */
- public static function activeCheckbox($model, $attribute, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $value = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('value', $options)) {
- $options['value'] = '1';
- }
- if (!array_key_exists('uncheck', $options)) {
- $options['uncheck'] = '0';
- }
- $checked = "$value" === "{$options['value']}";
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::checkbox($name, $checked, $options);
- }
- /**
- * Generates a drop-down list for the given model attribute.
- * The selection of the drop-down list is taken from the value of the model attribute.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $items the option data items. The array keys are option values, and the array values
- * are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too).
- * For each sub-array, an option group will be generated whose label is the key associated with the sub-array.
- * If you have a list of data models, you may convert them into the format described above using
- * [[\yii\helpers\ArrayHelper::map()]].
- *
- * Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in
- * the labels will also be HTML-encoded.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - prompt: string, a prompt text to be displayed as the first option;
- * - options: array, the attributes for the select option tags. The array keys must be valid option values,
- * and the array values are the extra attributes for the corresponding option tags. For example,
- *
- * ~~~
- * [
- * 'value1' => ['disabled' => true],
- * 'value2' => ['label' => 'value 2'],
- * ];
- * ~~~
- *
- * - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
- * except that the array keys represent the optgroup labels specified in $items.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated drop-down list tag
- */
- public static function activeDropDownList($model, $attribute, $items, $options = [])
- {
- if (!empty($options['multiple'])) {
- return static::activeListBox($model, $attribute, $items, $options);
- }
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $selection = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::dropDownList($name, $selection, $items, $options);
- }
- /**
- * Generates a list box.
- * The selection of the list box is taken from the value of the model attribute.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $items the option data items. The array keys are option values, and the array values
- * are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too).
- * For each sub-array, an option group will be generated whose label is the key associated with the sub-array.
- * If you have a list of data models, you may convert them into the format described above using
- * [[\yii\helpers\ArrayHelper::map()]].
- *
- * Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in
- * the labels will also be HTML-encoded.
- * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
- *
- * - prompt: string, a prompt text to be displayed as the first option;
- * - options: array, the attributes for the select option tags. The array keys must be valid option values,
- * and the array values are the extra attributes for the corresponding option tags. For example,
- *
- * ~~~
- * [
- * 'value1' => ['disabled' => true],
- * 'value2' => ['label' => 'value 2'],
- * ];
- * ~~~
- *
- * - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
- * except that the array keys represent the optgroup labels specified in $items.
- * - unselect: string, the value that will be submitted when no option is selected.
- * When this attribute is set, a hidden field will be generated so that if no option is selected in multiple
- * mode, we can still obtain the posted unselect value.
- *
- * The rest of the options will be rendered as the attributes of the resulting tag. The values will
- * be HTML-encoded using [[encode()]]. If a value is null, the corresponding attribute will not be rendered.
- *
- * @return string the generated list box tag
- */
- public static function activeListBox($model, $attribute, $items, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $selection = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('unselect', $options)) {
- $options['unselect'] = '';
- }
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::listBox($name, $selection, $items, $options);
- }
- /**
- * Generates a list of checkboxes.
- * A checkbox list allows multiple selection, like [[listBox()]].
- * As a result, the corresponding submitted value is an array.
- * The selection of the checkbox list is taken from the value of the model attribute.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $items the data item used to generate the checkboxes.
- * The array values are the labels, while the array keys are the corresponding checkbox values.
- * Note that the labels will NOT be HTML-encoded, while the values will.
- * @param array $options options (name => config) for the checkbox list. The following options are specially handled:
- *
- * - unselect: string, the value that should be submitted when none of the checkboxes is selected.
- * You may set this option to be null to prevent default value submission.
- * If this option is not set, an empty string will be submitted.
- * - separator: string, the HTML code that separates items.
- * - item: callable, a callback that can be used to customize the generation of the HTML code
- * corresponding to a single item in $items. The signature of this callback must be:
- *
- * ~~~
- * function ($index, $label, $name, $checked, $value)
- * ~~~
- *
- * where $index is the zero-based index of the checkbox in the whole list; $label
- * is the label for the checkbox; and $name, $value and $checked represent the name,
- * value and the checked status of the checkbox input.
- * @return string the generated checkbox list
- */
- public static function activeCheckboxList($model, $attribute, $items, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $selection = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('unselect', $options)) {
- $options['unselect'] = '';
- }
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::checkboxList($name, $selection, $items, $options);
- }
- /**
- * Generates a list of radio buttons.
- * A radio button list is like a checkbox list, except that it only allows single selection.
- * The selection of the radio buttons is taken from the value of the model attribute.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for the format
- * about attribute expression.
- * @param array $items the data item used to generate the radio buttons.
- * The array keys are the labels, while the array values are the corresponding radio button values.
- * Note that the labels will NOT be HTML-encoded, while the values will.
- * @param array $options options (name => config) for the radio button list. The following options are specially handled:
- *
- * - unselect: string, the value that should be submitted when none of the radio buttons is selected.
- * You may set this option to be null to prevent default value submission.
- * If this option is not set, an empty string will be submitted.
- * - separator: string, the HTML code that separates items.
- * - item: callable, a callback that can be used to customize the generation of the HTML code
- * corresponding to a single item in $items. The signature of this callback must be:
- *
- * ~~~
- * function ($index, $label, $name, $checked, $value)
- * ~~~
- *
- * where $index is the zero-based index of the radio button in the whole list; $label
- * is the label for the radio button; and $name, $value and $checked represent the name,
- * value and the checked status of the radio button input.
- * @return string the generated radio button list
- */
- public static function activeRadioList($model, $attribute, $items, $options = [])
- {
- $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute);
- $selection = static::getAttributeValue($model, $attribute);
- if (!array_key_exists('unselect', $options)) {
- $options['unselect'] = '';
- }
- if (!array_key_exists('id', $options)) {
- $options['id'] = static::getInputId($model, $attribute);
- }
- return static::radioList($name, $selection, $items, $options);
- }
- /**
- * Renders the option tags that can be used by [[dropDownList()]] and [[listBox()]].
- * @param string|array $selection the selected value(s). This can be either a string for single selection
- * or an array for multiple selections.
- * @param array $items the option data items. The array keys are option values, and the array values
- * are the corresponding option labels. The array can also be nested (i.e. some array values are arrays too).
- * For each sub-array, an option group will be generated whose label is the key associated with the sub-array.
- * If you have a list of data models, you may convert them into the format described above using
- * [[\yii\helpers\ArrayHelper::map()]].
- *
- * Note, the values and labels will be automatically HTML-encoded by this method, and the blank spaces in
- * the labels will also be HTML-encoded.
- * @param array $tagOptions the $options parameter that is passed to the [[dropDownList()]] or [[listBox()]] call.
- * This method will take out these elements, if any: "prompt", "options" and "groups". See more details
- * in [[dropDownList()]] for the explanation of these elements.
- *
- * @return string the generated list options
- */
- public static function renderSelectOptions($selection, $items, &$tagOptions = [])
- {
- $lines = [];
- if (isset($tagOptions['prompt'])) {
- $prompt = str_replace(' ', ' ', static::encode($tagOptions['prompt']));
- $lines[] = static::tag('option', $prompt, ['value' => '']);
- }
- $options = isset($tagOptions['options']) ? $tagOptions['options'] : [];
- $groups = isset($tagOptions['groups']) ? $tagOptions['groups'] : [];
- unset($tagOptions['prompt'], $tagOptions['options'], $tagOptions['groups']);
- foreach ($items as $key => $value) {
- if (is_array($value)) {
- $groupAttrs = isset($groups[$key]) ? $groups[$key] : [];
- $groupAttrs['label'] = $key;
- $attrs = ['options' => $options, 'groups' => $groups];
- $content = static::renderSelectOptions($selection, $value, $attrs);
- $lines[] = static::tag('optgroup', "\n" . $content . "\n", $groupAttrs);
- } else {
- $attrs = isset($options[$key]) ? $options[$key] : [];
- $attrs['value'] = (string)$key;
- $attrs['selected'] = $selection !== null &&
- (!is_array($selection) && !strcmp($key, $selection)
- || is_array($selection) && in_array($key, $selection));
- $lines[] = static::tag('option', str_replace(' ', ' ', static::encode($value)), $attrs);
- }
- }
- return implode("\n", $lines);
- }
- /**
- * Renders the HTML tag attributes.
- * Attributes whose values are of boolean type will be treated as
- * [boolean attributes](http://www.w3.org/TR/html5/infrastructure.html#boolean-attributes).
- * And attributes whose values are null will not be rendered.
- * @param array $attributes attributes to be rendered. The attribute values will be HTML-encoded using [[encode()]].
- * @return string the rendering result. If the attributes are not empty, they will be rendered
- * into a string with a leading white space (so that it can be directly appended to the tag name
- * in a tag. If there is no attribute, an empty string will be returned.
- */
- public static function renderTagAttributes($attributes)
- {
- if (count($attributes) > 1) {
- $sorted = [];
- foreach (static::$attributeOrder as $name) {
- if (isset($attributes[$name])) {
- $sorted[$name] = $attributes[$name];
- }
- }
- $attributes = array_merge($sorted, $attributes);
- }
- $html = '';
- foreach ($attributes as $name => $value) {
- if (is_bool($value)) {
- if ($value) {
- $html .= " $name";
- }
- } elseif ($value !== null) {
- $html .= " $name=\"" . static::encode($value) . '"';
- }
- }
- return $html;
- }
- /**
- * Normalizes the input parameter to be a valid URL.
- *
- * If the input parameter
- *
- * - is an empty string: the currently requested URL will be returned;
- * - is a non-empty string: it will first be processed by [[Yii::getAlias()]]. If the result
- * is an absolute URL, it will be returned without any change further; Otherwise, the result
- * will be prefixed with [[\yii\web\Request::baseUrl]] and returned.
- * - is an array: the first array element is considered a route, while the rest of the name-value
- * pairs are treated as the parameters to be used for URL creation using [[\yii\web\Controller::createUrl()]].
- * For example: `['post/index', 'page' => 2]`, `['index']`.
- * In case there is no controller, [[\yii\web\UrlManager::createUrl()]] will be used.
- *
- * @param array|string $url the parameter to be used to generate a valid URL
- * @return string the normalized URL
- * @throws InvalidParamException if the parameter is invalid.
- */
- public static function url($url)
- {
- if (is_array($url)) {
- if (isset($url[0])) {
- $route = $url[0];
- $params = array_splice($url, 1);
- if (Yii::$app->controller instanceof \yii\web\Controller) {
- return Yii::$app->controller->createUrl($route, $params);
- } else {
- return Yii::$app->getUrlManager()->createUrl($route, $params);
- }
- } else {
- throw new InvalidParamException('The array specifying a URL must contain at least one element.');
- }
- } elseif ($url === '') {
- return Yii::$app->getRequest()->getUrl();
- } else {
- $url = Yii::getAlias($url);
- if ($url !== '' && ($url[0] === '/' || $url[0] === '#' || strpos($url, '://') || !strncmp($url, './', 2))) {
- return $url;
- } else {
- return Yii::$app->getRequest()->getBaseUrl() . '/' . $url;
- }
- }
- }
- /**
- * Adds a CSS class to the specified options.
- * If the CSS class is already in the options, it will not be added again.
- * @param array $options the options to be modified.
- * @param string $class the CSS class to be added
- */
- public static function addCssClass(&$options, $class)
- {
- if (isset($options['class'])) {
- $classes = ' ' . $options['class'] . ' ';
- if (($pos = strpos($classes, ' ' . $class . ' ')) === false) {
- $options['class'] .= ' ' . $class;
- }
- } else {
- $options['class'] = $class;
- }
- }
- /**
- * Removes a CSS class from the specified options.
- * @param array $options the options to be modified.
- * @param string $class the CSS class to be removed
- */
- public static function removeCssClass(&$options, $class)
- {
- if (isset($options['class'])) {
- $classes = array_unique(preg_split('/\s+/', $options['class'] . ' ' . $class, -1, PREG_SPLIT_NO_EMPTY));
- if (($index = array_search($class, $classes)) !== false) {
- unset($classes[$index]);
- }
- if (empty($classes)) {
- unset($options['class']);
- } else {
- $options['class'] = implode(' ', $classes);
- }
- }
- }
- /**
- * Returns the real attribute name from the given attribute expression.
- *
- * An attribute expression is an attribute name prefixed and/or suffixed with array indexes.
- * It is mainly used in tabular data input and/or input of array type. Below are some examples:
- *
- * - `[0]content` is used in tabular data input to represent the "content" attribute
- * for the first model in tabular input;
- * - `dates[0]` represents the first array element of the "dates" attribute;
- * - `[0]dates[0]` represents the first array element of the "dates" attribute
- * for the first model in tabular input.
- *
- * If `$attribute` has neither prefix nor suffix, it will be returned back without change.
- * @param string $attribute the attribute name or expression
- * @return string the attribute name without prefix and suffix.
- * @throws InvalidParamException if the attribute name contains non-word characters.
- */
- public static function getAttributeName($attribute)
- {
- if (preg_match('/(^|.*\])(\w+)(\[.*|$)/', $attribute, $matches)) {
- return $matches[2];
- } else {
- throw new InvalidParamException('Attribute name must contain word characters only.');
- }
- }
- /**
- * Returns the value of the specified attribute name or expression.
- *
- * For an attribute expression like `[0]dates[0]`, this method will return the value of `$model->dates[0]`.
- * See [[getAttributeName()]] for more details about attribute expression.
- *
- * If an attribute value is an instance of [[ActiveRecordInterface]] or an array of such instances,
- * the primary value(s) of the AR instance(s) will be returned instead.
- *
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression
- * @return string|array the corresponding attribute value
- * @throws InvalidParamException if the attribute name contains non-word characters.
- */
- public static function getAttributeValue($model, $attribute)
- {
- if (!preg_match('/(^|.*\])(\w+)(\[.*|$)/', $attribute, $matches)) {
- throw new InvalidParamException('Attribute name must contain word characters only.');
- }
- $attribute = $matches[2];
- $value = $model->$attribute;
- if ($matches[3] !== '') {
- foreach (explode('][', trim($matches[3], '[]')) as $id) {
- if ((is_array($value) || $value instanceof \ArrayAccess) && isset($value[$id])) {
- $value = $value[$id];
- } else {
- return null;
- }
- }
- }
- // https://github.com/yiisoft/yii2/issues/1457
- if (is_array($value)) {
- foreach ($value as $i => $v) {
- if ($v instanceof ActiveRecordInterface) {
- $v = $v->getPrimaryKey(false);
- $value[$i] = is_array($v) ? json_encode($v) : $v;
- }
- }
- } elseif ($value instanceof ActiveRecordInterface) {
- $value = $value->getPrimaryKey(false);
- return is_array($value) ? json_encode($value) : $value;
- }
- return $value;
- }
- /**
- * Generates an appropriate input name for the specified attribute name or expression.
- *
- * This method generates a name that can be used as the input name to collect user input
- * for the specified attribute. The name is generated according to the [[Model::formName|form name]]
- * of the model and the given attribute name. For example, if the form name of the `Post` model
- * is `Post`, then the input name generated for the `content` attribute would be `Post[content]`.
- *
- * See [[getAttributeName()]] for explanation of attribute expression.
- *
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression
- * @return string the generated input name
- * @throws InvalidParamException if the attribute name contains non-word characters.
- */
- public static function getInputName($model, $attribute)
- {
- $formName = $model->formName();
- if (!preg_match('/(^|.*\])(\w+)(\[.*|$)/', $attribute, $matches)) {
- throw new InvalidParamException('Attribute name must contain word characters only.');
- }
- $prefix = $matches[1];
- $attribute = $matches[2];
- $suffix = $matches[3];
- if ($formName === '' && $prefix === '') {
- return $attribute . $suffix;
- } elseif ($formName !== '') {
- return $formName . $prefix . "[$attribute]" . $suffix;
- } else {
- throw new InvalidParamException(get_class($model) . '::formName() cannot be empty for tabular inputs.');
- }
- }
- /**
- * Generates an appropriate input ID for the specified attribute name or expression.
- *
- * This method converts the result [[getInputName()]] into a valid input ID.
- * For example, if [[getInputName()]] returns `Post[content]`, this method will return `post-content`.
- * @param Model $model the model object
- * @param string $attribute the attribute name or expression. See [[getAttributeName()]] for explanation of attribute expression.
- * @return string the generated input ID
- * @throws InvalidParamException if the attribute name contains non-word characters.
- */
- public static function getInputId($model, $attribute)
- {
- $name = strtolower(static::getInputName($model, $attribute));
- return str_replace(['[]', '][', '[', ']', ' '], ['', '-', '-', '', '-'], $name);
- }
- }
|