k_oct/plugins/akami/shift/models/Slider.php

38 lines
690 B
PHP
Executable File

<?php namespace Akami\Shift\Models;
use Model;
/**
* Model
*/
class Slider extends Model
{
use \October\Rain\Database\Traits\Validation;
public $implement = ['@RainLab.Translate.Behaviors.TranslatableModel'];
public $translatable = [
'txt',
'txt2',
'txt3',
'btn_txt'
];
/*
* Disable timestamps by default.
* Remove this line if timestamps are defined in the database table.
*/
public $timestamps = false;
/**
* @var string The database table used by the model.
*/
public $table = 'akami_shift_slider';
/**
* @var array Validation rules
*/
public $rules = [
];
}