Skip to content

Commit

Permalink
Merge pull request #105 from Arhell/src
Browse files Browse the repository at this point in the history
aupdate src folder links
  • Loading branch information
bizley committed Nov 15, 2023
2 parents 95b2eca + f71f77b commit a452c58
Show file tree
Hide file tree
Showing 19 changed files with 64 additions and 64 deletions.
6 changes: 3 additions & 3 deletions src/Accordion.php
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;
Expand Down Expand Up @@ -37,7 +37,7 @@
* ]);
* ```
*
* @see http://api.jqueryui.com/accordion/
* @see https://api.jqueryui.com/accordion/
* @author Alexander Kochetov <[email protected]>
* @since 2.0
*/
Expand Down
6 changes: 3 additions & 3 deletions src/AutoComplete.php
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;
Expand Down Expand Up @@ -46,7 +46,7 @@
* ]) ?>
* ```
*
* @see http://api.jqueryui.com/autocomplete/
* @see https://api.jqueryui.com/autocomplete/
* @author Alexander Kochetov <[email protected]>
* @since 2.0
*/
Expand Down
10 changes: 5 additions & 5 deletions src/DatePicker.php
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;
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
*
Expand Down
4 changes: 2 additions & 2 deletions src/DatePickerLanguageAsset.php
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;
Expand Down
8 changes: 4 additions & 4 deletions src/Dialog.php
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;
Expand All @@ -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
*/
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/Draggable.php
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;
Expand All @@ -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
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Droppable.php
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;
Expand All @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions src/InputWidget.php
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;
Expand Down
4 changes: 2 additions & 2 deletions src/JuiAsset.php
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;
Expand Down
10 changes: 5 additions & 5 deletions src/Menu.php
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;
Expand All @@ -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
*/
Expand All @@ -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 = [];
Expand Down
6 changes: 3 additions & 3 deletions src/ProgressBar.php
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;
Expand Down Expand Up @@ -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
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Resizable.php
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;
Expand All @@ -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
*/
Expand Down
14 changes: 7 additions & 7 deletions src/Selectable.php
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;
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -129,7 +129,7 @@ public static function begin($config = []) {
$config['mode'] = self::MODE_BEGIN;
parent::begin($config);
}

/**
* Initializes the widget.
*/
Expand All @@ -140,7 +140,7 @@ public function init()
echo Html::beginTag('div', $this->options) . "\n";
}
}

/**
* Renders the widget.
*/
Expand All @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/Slider.php
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;
Expand All @@ -21,7 +21,7 @@
* ]);
* ```
*
* @see http://api.jqueryui.com/slider/
* @see https://api.jqueryui.com/slider/
* @author Alexander Makarov <[email protected]>
* @since 2.0
*/
Expand Down
6 changes: 3 additions & 3 deletions src/SliderInput.php
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;
Expand Down Expand Up @@ -49,7 +49,7 @@
* ]) ?>
* ```
*
* @see http://api.jqueryui.com/slider/
* @see https://api.jqueryui.com/slider/
* @author Alexander Makarov <[email protected]>
* @since 2.0
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Sortable.php
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;
Expand Down Expand Up @@ -32,7 +32,7 @@
* ]);
* ```
*
* @see http://api.jqueryui.com/sortable/
* @see https://api.jqueryui.com/sortable/
* @author Alexander Kochetov <[email protected]>
* @since 2.0
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Spinner.php
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;
Expand Down Expand Up @@ -40,7 +40,7 @@
* ]) ?>
* ```
*
* @see http://api.jqueryui.com/spinner/
* @see https://api.jqueryui.com/spinner/
* @author Alexander Kochetov <[email protected]>
* @since 2.0
*/
Expand Down
Loading

0 comments on commit a452c58

Please sign in to comment.