mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-17 14:57:23 +08:00
More refactoring
This commit is contained in:
@@ -107,10 +107,8 @@ class Sortable extends Widget
|
|||||||
if (!isset($item['content'])) {
|
if (!isset($item['content'])) {
|
||||||
throw new InvalidConfigException("The 'content' option is required.");
|
throw new InvalidConfigException("The 'content' option is required.");
|
||||||
}
|
}
|
||||||
if (isset($item['options'])) {
|
$options = array_merge($options, ArrayHelper::getValue($item, 'options', array()));
|
||||||
$options = array_merge($options, $item['options']);
|
$tag = ArrayHelper::remove($options, 'tag', $tag);
|
||||||
$tag = ArrayHelper::remove($options, 'tag', $tag);
|
|
||||||
}
|
|
||||||
$items[] = Html::tag($tag, $item['content'], $options);
|
$items[] = Html::tag($tag, $item['content'], $options);
|
||||||
} else {
|
} else {
|
||||||
$items[] = Html::tag($tag, $item, $options);
|
$items[] = Html::tag($tag, $item, $options);
|
||||||
|
|||||||
Reference in New Issue
Block a user