Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

InputWidget.php 428B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\bootstrap;
  8. /**
  9. * InputWidget is an adjusted for bootstrap needs version of [[\yii\widgets\InputWidget]].
  10. *
  11. * @author Paul Klimov <klimov.paul@gmail.com>
  12. * @since 2.0.6
  13. */
  14. class InputWidget extends \yii\widgets\InputWidget
  15. {
  16. use BootstrapWidgetTrait;
  17. }