Server IP : 103.233.192.212 / Your IP : 52.14.154.79 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/framework/web/form/ |
Upload File : |
<?php /** * CFormStringElement class file. * * @author Qiang Xue <qiang.xue@gmail.com> * @link http://www.yiiframework.com/ * @copyright 2008-2013 Yii Software LLC * @license http://www.yiiframework.com/license/ */ /** * CFormStringElement represents a string in a form. * * @property string $on Scenario names separated by commas. Defaults to null. * * @author Qiang Xue <qiang.xue@gmail.com> * @package system.web.form * @since 1.1 */ class CFormStringElement extends CFormElement { /** * @var string the string content */ public $content; private $_on; /** * Returns a value indicating under which scenarios this string is visible. * If the value is empty, it means the string is visible under all scenarios. * Otherwise, only when the model is in the scenario whose name can be found in * this value, will the string be visible. See {@link CModel::scenario} for more * information about model scenarios. * @return string scenario names separated by commas. Defaults to null. */ public function getOn() { return $this->_on; } /** * @param string $value scenario names separated by commas. */ public function setOn($value) { $this->_on=preg_split('/[\s,]+/',$value,-1,PREG_SPLIT_NO_EMPTY); } /** * Renders this element. * The default implementation simply returns {@link content}. * @return string the string content */ public function render() { return $this->content; } /** * Evaluates the visibility of this element. * This method will check the {@link on} property to see if * the model is in a scenario that should have this string displayed. * @return boolean whether this element is visible. */ protected function evaluateVisible() { return empty($this->_on) || in_array($this->getParent()->getModel()->getScenario(),$this->_on); } }