update for version 1.0.1

This commit is contained in:
sujitprasad
2015-10-23 14:15:29 +05:30
parent 82b878e93b
commit 3d425dc380
8348 changed files with 10020 additions and 4171 deletions

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class date_format extends Model {
public $timestamps = false;
protected $table = 'date_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class date_time_format extends Model {
public $timestamps = false;
protected $table = 'date_time_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -0,0 +1,16 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Email extends Model {
/* Using Email table */
protected $table = 'email';
/* Set fillable fields in table */
protected $fillable = [
'id','template','sys_email','alert_email','admin_email','mta','email_fetching','strip',
'separator','all_emails','email_collaborator','attachment'
];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Form_type extends Model {
protected $table = 'form_type';
protected $fillable = [
'id','type'
];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Form_visibility extends Model {
protected $table = 'form_visibility';
protected $fillable = [
'id','visibility'
];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Languages extends Model {
public $timestamps = false;
protected $table = 'languages';
protected $fillable = ['name', 'locale'];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Logs extends Model {
public $timestamps = false;
protected $table = 'logs';
protected $fillable = ['id', 'level'];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class MailboxProtocol extends Model {
public $timestamps = false;
protected $table = 'mailbox_protocol';
protected $fillable = ['id', 'name'];
}

View File

@@ -0,0 +1,15 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Priority extends Model {
public $timestamps = false;
protected $table = 'priority';
protected $fillable = [
'id', 'name'
];
}

View File

@@ -0,0 +1,12 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Ticket_thread extends Model {
protected $table = 'ticket_thread';
protected $fillable = [
'id', 'ticket_id', 'ticket_subject', 'ticket_message', 'time', 'poster', 'created_at', 'updated_at'
];
}

View File

@@ -0,0 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Time_format extends Model {
public $timestamps = false;
protected $table = 'time_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -0,0 +1,10 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Timezones extends Model {
public $timestamps = false;
protected $table = 'timezone';
protected $fillable = ['name', 'location'];
}

View File

@@ -0,0 +1,12 @@
<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Version_Check extends Model {
protected $table = 'version_check';
protected $fillable = ['current_version','new_version','updated_at','created_at'];
}