Skip to content

Commit

Permalink
add some files
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkui committed Feb 17, 2022
1 parent af8f4ee commit 5638562
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* ]);
* ~~~
*
* @see http://www.getuikit.com/docs/breadcrumb.html
* @see https://getuikit.com/docs/breadcrumb
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion Button.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* 'options' => ['class' => 'uk-button-primary'],
* ]);
* ```
* @see http://www.getuikit.com/docs/button.html
* @see https://getuikit.com/docs/button
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
4 changes: 2 additions & 2 deletions ButtonDropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
* ],
* ]);
* ```
* @see http://www.getuikit.com/docs/button.html
* @see http://www.getuikit.com/docs/dropdown.html
* @see https://getuikit.com/docs/button
* @see https://getuikit.com/docs/dropdown
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion ButtonGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* ]
* ]);
* ```
* @see http://www.getuikit.com/docs/button.html
* @see https://getuikit.com/docs/button
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion Dropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* Dropdown::end();
* ```
*
* @see http://www.getuikit.com/docs/dropdown.html
* @see https://getuikit.com/docs/dropdown
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion Icon.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* echo Icon::widget(['name' => 'fast-backward']);
* ]);
* ```
* @see http://www.getuikit.com/docs/icon.html
* @see https://getuikit.com/docs/icon
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
6 changes: 3 additions & 3 deletions Modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Modal::end();
* ~~~
*
* @see http://www.getuikit.com/docs/modal.html
* @see https://getuikit.com/docs/modal
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand All @@ -46,7 +46,7 @@ class Modal extends Widget
* - label: string, the label of the button. Defaults to '&times;'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://www.getuikit.com/docs/modal.html)
* Please refer to the [Modal plugin help](https://getuikit.com/docs/modal)
* for the supported HTML attributes.
*/
public $closeButton = [];
Expand All @@ -61,7 +61,7 @@ class Modal extends Widget
* - label: string, the label of the button. Defaults to 'Show'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://www.getuikit.com/docs/modal.html)
* Please refer to the [Modal plugin help](https://getuikit.com/docs/modal)
* for the supported HTML attributes.
*/
public $toggleButton;
Expand Down
2 changes: 1 addition & 1 deletion Nav.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*
* Note: Multilevel dropdowns beyond Level 1 are not supported.
*
* @see http://www.getuikit.com/docs/nav.html
* @see https://getuikit.com/docs/nav
*
* @author Quinn Pan <[email protected]>
* @since 3.0
Expand Down
2 changes: 1 addition & 1 deletion NavBar.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* NavBar::end();
* ```
*
* @see http://www.getuikit.com/docs/navbar.html
* @see https://getuikit.com/docs/navbar
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion Progress.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* ]);
*
* ```
* @see http://www.getuikit.com/docs/progress.html
* @see https://getuikit.com/docs/progress
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ UIkit theme for yii2
Installation
------------

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
The preferred way to install this extension is through [composer](https://getcomposer.org/download/).

Either run

Expand Down
6 changes: 3 additions & 3 deletions Tabs.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 pjkui\uikit;
Expand Down Expand Up @@ -49,7 +49,7 @@
* ]);
* ```
*
* @see http://www.getuikit.com/docs/tab.html
* @see https://getuikit.com/docs/tab
* @author Quinn Pan <[email protected]>
* @since 3.0
*/
Expand Down
4 changes: 2 additions & 2 deletions Widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ class Widget extends \yii\base\Widget
/**
* @var array the options for the underlying JS plugin.
* Please refer to the corresponding plugin Web page for possible options.
* For example, [this page](http://www.getuikit.com/docs/components.html) shows
* For example, [this page](https://getuikit.com/docs/components) shows
* how to use the "Modal" plugin and the supported options (e.g. "remote").
*/
public $clientOptions = [];
/**
* @var array the event handlers for the underlying JS plugin.
* Please refer to the corresponding plugin Web page for possible events.
* For example, [this page](http://www.getuikit.com/docs/components.html) shows
* For example, [this page](https://getuikit.com/docs/components) shows
* how to use the "Modal" plugin and the supported events (e.g. "shown").
*/
public $clientEvents = [];
Expand Down

0 comments on commit 5638562

Please sign in to comment.