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,12 +1,14 @@
<?php namespace App\Model\helpdesk\Email;
<?php
namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Banlist extends Model {
protected $table = 'banlist';
protected $fillable = [
'id', 'ban_status', 'email_address', 'internal_notes',
];
protected $table = 'banlist';
protected $fillable = [
'id', 'ban_status', 'email_address', 'internal_notes',
];
}

View File

@@ -1,15 +1,18 @@
<?php namespace App\Model\helpdesk\Email;
<?php
namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Emails extends Model
{
protected $table = 'emails';
protected $fillable = [
'email_address', 'email_name', 'department', 'priority', 'help_topic',
'user_name', 'password', 'fetching_host', 'fetching_port', 'mailbox_protocol',
'folder', 'sending_host', 'sending_port', 'internal_notes', 'auto_response',
'fetching_status', 'move_to_folder', 'delete_email', 'do_nothing',
'sending_status', 'authentication', 'header_spoofing','imap_config'
];
}
class Emails extends Model {
protected $table = 'emails';
protected $fillable = [
'email_address', 'email_name', 'department', 'priority', 'help_topic',
'user_name', 'password', 'fetching_host', 'fetching_port', 'mailbox_protocol',
'folder', 'sending_host', 'sending_port', 'sending_encryption', 'internal_notes', 'auto_response',
'fetching_status', 'move_to_folder', 'delete_email', 'do_nothing',
'sending_status', 'authentication', 'header_spoofing', 'imap_config'
];
}

View File

@@ -1,10 +1,13 @@
<?php namespace App\Model\helpdesk\Email;
<?php
namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Smtp extends Model
{
public $timestamps = false;
protected $table = 'send_mail';
protected $fillable = ['driver','port','host','encryption','name','email','password'];
}
class Smtp extends Model {
public $timestamps = false;
protected $table = 'send_mail';
protected $fillable = ['driver', 'port', 'host', 'encryption', 'name', 'email', 'password'];
}

View File

@@ -1,12 +1,14 @@
<?php namespace App\Model\helpdesk\Email;
<?php
namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Template extends Model {
protected $table = 'template';
protected $fillable = [
'id','name','status','template_set_to_clone','language','internal_note'
];
protected $table = 'template';
protected $fillable = [
'id', 'name', 'status', 'template_set_to_clone', 'language', 'internal_note'
];
}