Schools.php
1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
namespace common\models;
use Yii;
use common\models;
/**
* This is the model class for table "{{%schools}}".
*
* @property string $description
* @property string $image
* @property string $address
* @property string $email
* @property string $gallery
* @property string $program
* @property integer $id
* @property string $name
* @property string $spots_id
*/
class Schools extends GalleryRecord
{
public $file;
public $file_three;
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%schools}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['description', 'name'], 'required'],
[['file','file_three'], 'file'],
[['description', 'gallery', 'program'], 'string'],
[['image', 'address', 'email', 'name','spots_id'], 'string', 'max' => 255]
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'description' => 'Description',
'image' => 'Image',
'address' => 'Address',
'email' => 'Email',
'gallery' => 'Gallery',
'program' => 'Program',
'id' => 'ID',
'name' => 'Name',
];
}
function isActive($array)
{
$array = explode(',' , $array);
if(in_array($this->id, $array)){
return "checked";
} else{
return "";
}
}
public function behaviors()
{
return [
'slug' => [
'class' => 'common\behaviors\Slug',
'in_attribute' => 'name',
'out_attribute' => 'translit',
'translit' => true
]
];
}
public function schoolsForFooter()
{
return self::find()->limit(4)->all();
}
}