Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

58 lines
1011B

  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "order_status".
  6. *
  7. * @property integer $id
  8. * @property string $name
  9. */
  10. class OrderStatus extends \yii\db\ActiveRecord
  11. {
  12. /**
  13. * @inheritdoc
  14. */
  15. public static function tableName()
  16. {
  17. return 'order_status';
  18. }
  19. /**
  20. * @inheritdoc
  21. */
  22. public function rules()
  23. {
  24. return [
  25. [['name'], 'string', 'max' => 255],
  26. ];
  27. }
  28. /**
  29. * @inheritdoc
  30. */
  31. public function attributeLabels()
  32. {
  33. return [
  34. 'id' => 'ID',
  35. 'name' => 'Nom',
  36. ];
  37. }
  38. /**
  39. * Retourne les options de base nécessaires à la fonction de recherche.
  40. *
  41. * @return array
  42. */
  43. public static function defaultOptionsSearch() {
  44. return [
  45. 'with' => [],
  46. 'join_with' => ['user', 'order'],
  47. 'orderby' => 'id ASC',
  48. 'attribute_id_producer' => ''
  49. ] ;
  50. }
  51. }