Yii2 framework backup
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.

61 lines
1.1 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\jui;
use yii\helpers\Html;
/**
* AutoComplete renders a sortable jQuery UI widget.
*
* For example:
*
* ```php
* Sortable::begin(array(
* 'clientOptions' => array(
* 'cursor' => 'move',
* ),
* 'options' => array(
* 'tag' => 'ul',
* ),
* ));
*
* echo '<li>Item 1</li>';
* echo '<li>Item 2</li>';
* echo '<li>Item 3</li>';
*
* Sortable::end();
* ```
*
* @see http://api.jqueryui.com/sortable/
* @author Alexander Kochetov <creocoder@gmail.com>
* @since 2.0
*/
class Sortable extends Widget
{
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
$options = $this->options;
$tag = isset($options['tag']) ? $options['tag'] : 'div';
unset($options['tag']);
echo Html::beginTag($tag, $options) . "\n";
}
/**
* Renders the widget.
*/
public function run()
{
11 years ago
echo Html::endTag(isset($this->options['tag']) ? $this->options['tag'] : 'div') . "\n";
$this->registerWidget('sortable', false);
}
}