You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
4.2 KiB
153 lines
4.2 KiB
<?php |
|
/** |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright (c) 2008 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\widgets; |
|
|
|
use Yii; |
|
use yii\base\InvalidCallException; |
|
use yii\base\InvalidParamException; |
|
use yii\base\Widget; |
|
use yii\base\Model; |
|
use yii\helpers\Html; |
|
use yii\helpers\ArrayHelper; |
|
|
|
/** |
|
* ActiveForm ... |
|
* |
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
* @since 2.0 |
|
*/ |
|
class ActiveForm extends Widget |
|
{ |
|
/** |
|
* @param array|string $action the form action URL. This parameter will be processed by [[\yii\helpers\Html::url()]]. |
|
*/ |
|
public $action = ''; |
|
/** |
|
* @var string the form submission method. This should be either 'post' or 'get'. |
|
* Defaults to 'post'. |
|
*/ |
|
public $method = 'post'; |
|
public $options = array(); |
|
public $errorOptions = array('tag' => 'div', 'class' => 'yii-error-message'); |
|
public $labelOptions = array('class' => 'yii-input-label'); |
|
/** |
|
* @var string the default CSS class for the error summary container. |
|
* @see errorSummary() |
|
*/ |
|
public $errorSummaryCssClass = 'yii-error-summary'; |
|
/** |
|
* @var string the default CSS class that indicates an input has error. |
|
*/ |
|
public $errorCssClass = 'yii-error'; |
|
/** |
|
* @var string the default CSS class that indicates an input validated successfully. |
|
*/ |
|
public $successCssClass = 'yii-success'; |
|
/** |
|
* @var string the default CSS class that indicates an input is currently being validated. |
|
*/ |
|
public $validatingCssClass = 'yii-validating'; |
|
/** |
|
* @var boolean whether to enable client-side data validation. Defaults to false. |
|
* When this property is set true, client-side validation will be performed by validators |
|
* that support it (see {@link CValidator::enableClientValidation} and {@link CValidator::clientValidateAttribute}). |
|
*/ |
|
public $enableClientValidation = false; |
|
|
|
public $fieldClass = 'yii\widgets\ActiveField'; |
|
/** |
|
* Initializes the widget. |
|
* This renders the form open tag. |
|
*/ |
|
public function init() |
|
{ |
|
echo Html::beginForm($this->action, $this->method, $this->options); |
|
} |
|
|
|
/** |
|
* Runs the widget. |
|
* This registers the necessary javascript code and renders the form close tag. |
|
*/ |
|
public function run() |
|
{ |
|
echo Html::endForm(); |
|
} |
|
|
|
/** |
|
* @param Model|Model[] $models |
|
* @param array $options |
|
* @return string |
|
*/ |
|
public function errorSummary($models, $options = array()) |
|
{ |
|
if (!is_array($models)) { |
|
$models = array($models); |
|
} |
|
|
|
$showAll = !empty($options['showAll']); |
|
$lines = array(); |
|
/** @var $model Model */ |
|
foreach ($models as $model) { |
|
if ($showAll) { |
|
foreach ($model->getErrors() as $errors) { |
|
$lines = array_merge($lines, $errors); |
|
} |
|
} else { |
|
$lines = array_merge($lines, $model->getFirstErrors()); |
|
} |
|
} |
|
|
|
$header = isset($options['header']) ? $options['header'] : '<p>' . Yii::t('yii|Please fix the following errors:') . '</p>'; |
|
$footer = isset($options['footer']) ? $options['footer'] : ''; |
|
$tag = isset($options['tag']) ? $options['tag'] : 'div'; |
|
unset($options['showAll'], $options['header'], $options['footer'], $options['container']); |
|
|
|
if (!isset($options['class'])) { |
|
$options['class'] = $this->errorSummaryCssClass; |
|
} else { |
|
$options['class'] .= ' ' . $this->errorSummaryCssClass; |
|
} |
|
|
|
if ($lines !== array()) { |
|
$content = "<ul><li>" . implode("</li>\n<li>", ArrayHelper::htmlEncode($lines)) . "</li><ul>"; |
|
return Html::tag($tag, $header . $content . $footer, $options); |
|
} else { |
|
$content = "<ul></ul>"; |
|
$options['style'] = isset($options['style']) ? rtrim($options['style'], ';') . '; display:none' : 'display:none'; |
|
return Html::tag($tag, $header . $content . $footer, $options); |
|
} |
|
} |
|
|
|
/** |
|
* @var ActiveField[] |
|
*/ |
|
private $_fieldStack = array(); |
|
|
|
public function beginField($model, $attribute, $options = array()) |
|
{ |
|
$field = Yii::createObject(array( |
|
'class' => $this->fieldClass, |
|
'model' => $model, |
|
'attribute' => $attribute, |
|
'form' => $this, |
|
'options' => $options, |
|
)); |
|
echo $field->begin(); |
|
return $this->_fieldStack[] = $field; |
|
} |
|
|
|
public function endField() |
|
{ |
|
if ($this->_fieldStack !== array()) { |
|
$field = array_pop($this->_fieldStack); |
|
echo $field->end(); |
|
} else { |
|
throw new InvalidCallException('The "beginField" and "endField" calls are not matching.'); |
|
} |
|
} |
|
}
|
|
|