1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
class Bk_member extends MY_Controller { public function __construct() { // set $this->table and $this->model parent::__construct(substr(__CLASS__, 3));
$this->block_methods = array('sort', 'modify');
$this->updated_single_language_fields = array( ); $tmp = array( 'email' => __('Email') ); $this->single_language_fields = array_merge($this->updated_single_language_fields, $tmp);
$this->single_language_validate_fields = array( );
$this->single_language_encpytion_fields = array( ); } }
|