-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
64 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -37,7 +37,7 @@ | |
* ]); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/accordion/ | ||
* @see https://api.jqueryui.com/accordion/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -46,7 +46,7 @@ | |
* ]) ?> | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/autocomplete/ | ||
* @see https://api.jqueryui.com/autocomplete/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -57,7 +57,7 @@ | |
* [['from_date'], 'default', 'value' => null], | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/datepicker/ | ||
* @see https://api.jqueryui.com/datepicker/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @author Carsten Brandt <[email protected]> | ||
* @since 2.0 | ||
|
@@ -86,9 +86,9 @@ class DatePicker extends InputWidget | |
* to populate the [[clientOptions|clientOption]] `dateFormat`. | ||
* The value can be one of "short", "medium", "long", or "full", which represents a preset format of different lengths. | ||
* | ||
* It can also be a custom format as specified in the [ICU manual](http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax). | ||
* It can also be a custom format as specified in the [ICU manual](https://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax). | ||
* Alternatively this can be a string prefixed with `php:` representing a format that can be recognized by the | ||
* PHP [date()](http://php.net/manual/de/function.date.php)-function. | ||
* PHP [date()](https://php.net/manual/de/function.date.php)-function. | ||
* | ||
* For example: | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -26,7 +26,7 @@ | |
* Dialog::end(); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/dialog/ | ||
* @see https://api.jqueryui.com/dialog/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
@@ -43,7 +43,7 @@ public function init() | |
//Fix for closing icon (x) not showing up in dialog | ||
$this->getView()->registerJs(" | ||
if ($.fn.button) { | ||
var bootstrapButton = $.fn.button.noConflict(); | ||
var bootstrapButton = $.fn.button.noConflict(); | ||
$.fn.bootstrapBtn = bootstrapButton; | ||
}", | ||
\yii\web\View::POS_READY | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -24,7 +24,7 @@ | |
* Draggable::end(); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/draggable/ | ||
* @see https://api.jqueryui.com/draggable/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -24,7 +24,7 @@ | |
* Droppable::end(); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/droppable/ | ||
* @see https://api.jqueryui.com/droppable/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -12,7 +12,7 @@ | |
/** | ||
* Menu renders a menu jQuery UI widget. | ||
* | ||
* @see http://api.jqueryui.com/menu/ | ||
* @see https://api.jqueryui.com/menu/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
@@ -21,14 +21,14 @@ class Menu extends \yii\widgets\Menu | |
/** | ||
* @var array the options for the underlying jQuery UI widget. | ||
* Please refer to the corresponding jQuery UI widget Web page for possible options. | ||
* For example, [this page](http://api.jqueryui.com/accordion/) shows | ||
* For example, [this page](https://api.jqueryui.com/accordion/) shows | ||
* how to use the "Accordion" widget and the supported options (e.g. "header"). | ||
*/ | ||
public $clientOptions = []; | ||
/** | ||
* @var array the event handlers for the underlying jQuery UI widget. | ||
* Please refer to the corresponding jQuery UI widget Web page for possible events. | ||
* For example, [this page](http://api.jqueryui.com/accordion/) shows | ||
* For example, [this page](https://api.jqueryui.com/accordion/) shows | ||
* how to use the "Accordion" widget and the supported events (e.g. "create"). | ||
*/ | ||
public $clientEvents = []; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -34,7 +34,7 @@ | |
* | ||
* ProgressBar::end(); | ||
* ~~~ | ||
* @see http://api.jqueryui.com/progressbar/ | ||
* @see https://api.jqueryui.com/progressbar/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -26,7 +26,7 @@ | |
* Resizable::end(); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/resizable/ | ||
* @see https://api.jqueryui.com/resizable/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -68,7 +68,7 @@ | |
* Selectable::end(); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/selectable/ | ||
* @see https://api.jqueryui.com/selectable/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
@@ -129,7 +129,7 @@ public static function begin($config = []) { | |
$config['mode'] = self::MODE_BEGIN; | ||
parent::begin($config); | ||
} | ||
|
||
/** | ||
* Initializes the widget. | ||
*/ | ||
|
@@ -140,7 +140,7 @@ public function init() | |
echo Html::beginTag('div', $this->options) . "\n"; | ||
} | ||
} | ||
|
||
/** | ||
* Renders the widget. | ||
*/ | ||
|
@@ -155,10 +155,10 @@ public function run() | |
echo $this->renderItems() . "\n"; | ||
echo Html::endTag($tag) . "\n"; | ||
} | ||
|
||
$this->registerWidget('selectable'); | ||
} | ||
|
||
/** | ||
* Renders selectable items as specified on [[items]]. | ||
* @return string the rendering result. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -21,7 +21,7 @@ | |
* ]); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/slider/ | ||
* @see https://api.jqueryui.com/slider/ | ||
* @author Alexander Makarov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -49,7 +49,7 @@ | |
* ]) ?> | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/slider/ | ||
* @see https://api.jqueryui.com/slider/ | ||
* @author Alexander Makarov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -32,7 +32,7 @@ | |
* ]); | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/sortable/ | ||
* @see https://api.jqueryui.com/sortable/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
/** | ||
* @link http://www.yiiframework.com/ | ||
* @link https://www.yiiframework.com/ | ||
* @copyright Copyright (c) 2008 Yii Software LLC | ||
* @license http://www.yiiframework.com/license/ | ||
* @license https://www.yiiframework.com/license/ | ||
*/ | ||
|
||
namespace yii\jui; | ||
|
@@ -40,7 +40,7 @@ | |
* ]) ?> | ||
* ``` | ||
* | ||
* @see http://api.jqueryui.com/spinner/ | ||
* @see https://api.jqueryui.com/spinner/ | ||
* @author Alexander Kochetov <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
Oops, something went wrong.