update v1.0.6

This commit is contained in:
sujitprasad
2016-02-16 22:42:08 +05:30
parent e6b579d67b
commit 073a49a8af
587 changed files with 21487 additions and 22766 deletions

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
public $timestamps = false;
protected $table = 'date_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
public $timestamps = false;
protected $table = 'date_time_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -1,16 +1,17 @@
<?php namespace App\Model\helpdesk\Utility;
<?php
namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Email extends Model {
/* Using Email table */
/* 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'
];
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

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

View File

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

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
public $timestamps = false;
protected $table = 'languages';
protected $fillable = ['name', 'locale'];
}

View File

@@ -1,11 +1,12 @@
<?php namespace App\Model\helpdesk\Utility;
<?php
namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Limit_Login extends Model {
protected $table = 'limit_login';
protected $fillable = ['email', 'ip_address', 'duration', 'attempt_time', 'created_at', 'updated_at'];
protected $table = 'limit_login';
protected $fillable = ['email', 'ip_address', 'duration', 'attempt_time', 'created_at', 'updated_at'];
}

View File

@@ -1,11 +1,12 @@
<?php namespace App\Model\helpdesk\Utility;
<?php
namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class Log_notification extends Model {
protected $table = 'log_notification';
protected $fillable = ['id', 'log'];
protected $table = 'log_notification';
protected $fillable = ['id', 'log'];
}

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
public $timestamps = false;
protected $table = 'logs';
protected $fillable = ['id', 'level'];
}

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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', 'value'];
public $timestamps = false;
protected $table = 'mailbox_protocol';
protected $fillable = ['id', 'name', 'value'];
}

View File

@@ -1,15 +1,15 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'
];
public $timestamps = false;
protected $table = 'priority';
protected $fillable = [
'id', 'name'
];
}

View File

@@ -1,12 +1,14 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'
];
protected $table = 'ticket_thread';
protected $fillable = [
'id', 'ticket_id', 'ticket_subject', 'ticket_message', 'time', 'poster', 'created_at', 'updated_at'
];
}

View File

@@ -1,13 +1,13 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
public $timestamps = false;
protected $table = 'time_format';
protected $fillable = ['id', 'format'];
}

View File

@@ -1,12 +1,12 @@
<?php namespace App\Model\helpdesk\Utility;
<?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'];
protected $table = 'version_check';
protected $fillable = ['current_version', 'new_version', 'updated_at', 'created_at'];
}