300], [['thread_by'], 'string', 'max' => 100], [['thread_tel', 'thread_email'], 'string', 'max' => 45], ['verifyCode', 'captcha', 'on' => 'thread_new'], [['name', 'description'], ForbiddenWordsValidator::class, 'forbiddenWords' => ['สล็อต', 'pg', 'pg-slot', 'slot', 'ศูนย์รวมเกมสล็อต', 'ทดลองเล่นสล็อต', 'รวมเกมแตกง่าาย','เกม','พนัน','ดูหนัง']], //['reCaptcha', ReCaptchaValidator::className(), 'secret' => '6LeE1oUaAAAAAFx52j5MC7zjbL16xY-HF4akrT-U'], ['hcaptcha_response', 'required', 'message' => 'โปรดยืนยันว่าไม่ใช่บอท'], [['forum_category_id'], 'exist', 'skipOnError' => true, 'targetClass' => ForumCategory::className(), 'targetAttribute' => ['forum_category_id' => 'id']], [['thread_email'],'email'] ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'forum_category_id' => 'กระดานกระทู้', 'name' => 'หัวข้อ', 'description' => 'รายละเอียด', 'status' => 'สถานะ', 'created_at' => 'เพิ่มเมื่อ', 'updated_at' => 'แก้ไขเมื่อ', 'thread_by' => 'ผู้โพสต์', 'thread_tel' => 'โทรศัพท์', 'thread_email' => 'อีเมล์', 'thread_contact' => 'ช่องทางการติดต่อกลับ', 'remark' => 'หมายเหตุ', 'reCaptcha' => '', ]; } /** * Gets query for [[ForumCategory]]. * * @return \yii\db\ActiveQuery */ public function getForumCategory() { return $this->hasOne(ForumCategory::className(), ['id' => 'forum_category_id']); } }