Kd.php 714 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace app\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "kd".
  6. *
  7. * @property int $id статья
  8. * @property int $order сортировка
  9. */
  10. class Kd extends \yii\db\ActiveRecord
  11. {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public static function tableName()
  16. {
  17. return 'kd';
  18. }
  19. /**
  20. * {@inheritdoc}
  21. */
  22. public function rules()
  23. {
  24. return [
  25. [['id', 'order'], 'required'],
  26. [['id', 'order'], 'integer'],
  27. ];
  28. }
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function attributeLabels()
  33. {
  34. return [
  35. 'id' => 'статья',
  36. 'order' => 'сортировка',
  37. ];
  38. }
  39. }