定制 nsept/yii2-birthday-picker 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

nsept/yii2-birthday-picker

Composer 安装命令:

composer require nsept/yii2-birthday-picker

包简介

A Yii2 widget extension that allows you to easily create birthday form field

README 文档

README

example

A Yii2 widget extension that allows you to easily create birthday form field.

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist nsept/yii2-birthday-picker "*"

or add

"nsept/yii2-birthday-picker": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by:

// model
public function rules()
{
    return [
        ['birthday', 'required'],
        ['birthday', \nsept\birthdaypicker\BirthdayValidator::className()],
    ];
}

// view
<?= \nsept\birthdaypicker\BirthdayPickerWidget::widget([
    'form'      => $form,
    'model'     => $model,
    'attribute' => 'birthday'
]) ?>

统计信息

  • 总下载量: 10.56k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 3
  • 开发语言: JavaScript

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-04-29