@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | # You should have received a copy of the GNU Affero General Public License |
21 | 21 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 | 22 | ############################################################################### |
23 | -if (!defined('BASEPATH')) |
|
23 | +if ( ! defined('BASEPATH')) |
|
24 | 24 | exit('No direct script access allowed'); |
25 | 25 | |
26 | 26 | class rates_form { |
@@ -28,29 +28,29 @@ discard block |
||
28 | 28 | $this->CI = & get_instance(); |
29 | 29 | } |
30 | 30 | function get_termination_rate_form_fields() { |
31 | - $form['forms'] = array(base_url() . 'rates/termination_rate_save/', array('id' => 'termination_rate_form', 'method' => 'POST', 'name' => 'termination_rate_form')); |
|
31 | + $form['forms'] = array(base_url().'rates/termination_rate_save/', array('id' => 'termination_rate_form', 'method' => 'POST', 'name' => 'termination_rate_form')); |
|
32 | 32 | $form['Rate Information'] = array( |
33 | 33 | array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''), |
34 | 34 | array('Trunk', 'trunk_id', 'SELECT', '', 'dropdown', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")), |
35 | - array('Code', 'INPUT', array('name' => 'pattern', 'size' => '20', 'class' => "text field medium"), 'trim|required|numeric|xss_clean', 'tOOL TIP', ''), |
|
36 | - array('Destination', 'INPUT', array('name' => 'comment', 'size' => '20', 'class' => "text field medium"), 'tOOL TIP', ''), |
|
37 | - array('Strip', 'INPUT', array('name' => 'strip', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''), |
|
38 | - array('Prepend', 'INPUT', array('name' => 'prepend', 'size' => '20', 'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''), |
|
35 | + array('Code', 'INPUT', array('name' => 'pattern', 'size' => '20', 'class' => "text field medium"), 'trim|required|numeric|xss_clean', 'tOOL TIP', ''), |
|
36 | + array('Destination', 'INPUT', array('name' => 'comment', 'size' => '20', 'class' => "text field medium"), 'tOOL TIP', ''), |
|
37 | + array('Strip', 'INPUT', array('name' => 'strip', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''), |
|
38 | + array('Prepend', 'INPUT', array('name' => 'prepend', 'size' => '20', 'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''), |
|
39 | 39 | array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_status'), |
40 | 40 | |
41 | 41 | |
42 | 42 | ); |
43 | 43 | $form['Billing Information'] = array( |
44 | - array('Connect Cost', 'INPUT', array('name' => 'connectcost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
44 | + array('Connect Cost', 'INPUT', array('name' => 'connectcost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
45 | 45 | array('Included Seconds', 'INPUT', array('name' => 'includedseconds', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
46 | 46 | array('Per Minute Cost', 'INPUT', array('name' => 'cost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
47 | 47 | /** |
48 | 48 | ASTPP 3.0 |
49 | 49 | For Add Initial Increment field |
50 | 50 | **/ |
51 | - array('Initial Increment', 'INPUT', array('name' => 'init_inc', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
51 | + array('Initial Increment', 'INPUT', array('name' => 'init_inc', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
52 | 52 | /*******************************************************/ |
53 | - array('Increment', 'INPUT', array('name' => 'inc', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
53 | + array('Increment', 'INPUT', array('name' => 'inc', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
54 | 54 | array('Priority', 'INPUT', array('name' => 'precedence', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', '')); |
55 | 55 | |
56 | 56 | $form['button_cancel'] = array('name' => 'action', 'content' => 'Close', 'value' => 'cancel', 'type' => 'button', 'class' => 'btn btn-line-sky margin-x-10', 'onclick' => 'return redirect_page(\'NULL\')'); |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | function get_origination_rate_form_fields() { |
63 | - $logintype=$this->CI->session->userdata('userlevel_logintype'); |
|
64 | - $trunk=null; |
|
65 | - if($logintype !=1) |
|
63 | + $logintype = $this->CI->session->userdata('userlevel_logintype'); |
|
64 | + $trunk = null; |
|
65 | + if ($logintype != 1) |
|
66 | 66 | $trunk = array('Force Trunk', 'trunk_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")); |
67 | - $form['forms'] = array(base_url() . 'rates/origination_rate_save/', array('id' => 'origination_rate_form', 'method' => 'POST', 'name' => 'origination_rate_form')); |
|
67 | + $form['forms'] = array(base_url().'rates/origination_rate_save/', array('id' => 'origination_rate_form', 'method' => 'POST', 'name' => 'origination_rate_form')); |
|
68 | 68 | $form['Rate Information'] = array( |
69 | 69 | array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''), |
70 | - array('Rate Group', 'pricelist_id', 'SELECT', '','', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0",'reseller_id'=>0)), |
|
70 | + array('Rate Group', 'pricelist_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0", 'reseller_id'=>0)), |
|
71 | 71 | array('Code', 'INPUT', array('name' => 'pattern', 'size' => '20', 'class' => "text field medium"), 'trim|required|numeric|xss_clean', 'tOOL TIP', ''), |
72 | 72 | array('Destination', 'INPUT', array('name' => 'comment', 'size' => '20', 'class' => "text field medium"), 'tOOL TIP', ''), |
73 | 73 | //array('Priority', 'INPUT', array('name' => 'precedence', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
@@ -75,9 +75,9 @@ discard block |
||
75 | 75 | |
76 | 76 | ); |
77 | 77 | $form['Billing Information'] = array( |
78 | - array('Connect Cost', 'INPUT', array('name' => 'connectcost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
79 | - array('Included Seconds', 'INPUT', array('name' => 'includedseconds', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
80 | - array('Per Minute Cost', 'INPUT', array('name' => 'cost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
78 | + array('Connect Cost', 'INPUT', array('name' => 'connectcost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
79 | + array('Included Seconds', 'INPUT', array('name' => 'includedseconds', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|xss_clean', 'tOOL TIP', ''), |
|
80 | + array('Per Minute Cost', 'INPUT', array('name' => 'cost', 'size' => '20', 'class' => "text field medium"), 'trim|numeric|currency_decimal|xss_clean', 'tOOL TIP', ''), |
|
81 | 81 | /** |
82 | 82 | ASTPP 3.0 |
83 | 83 | For Add Initial Increment field |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | /***************************************************************/ |
114 | 114 | array('Increment', 'INPUT', array('name' => 'inc[inc]', '', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', 'inc[inc-integer]', '', '', '', 'search_int_type', ''), |
115 | 115 | array('Priority', 'INPUT', array('name' => 'prepend[prepend]', '', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', 'prepend[prepend-string]', '', '', '', 'search_string_type', ''), |
116 | - array('Trunk', 'trunk_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")),array('', 'HIDDEN', 'ajax_search', '1', '', '', ''), |
|
116 | + array('Trunk', 'trunk_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")), array('', 'HIDDEN', 'ajax_search', '1', '', '', ''), |
|
117 | 117 | array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status', '', ''), |
118 | 118 | /****** |
119 | 119 | ASTPP 3.0 |
@@ -129,14 +129,14 @@ discard block |
||
129 | 129 | ASTPP 3.0 |
130 | 130 | Batch Delete |
131 | 131 | ******/ |
132 | - $form['button_search_delete'] = array('name' => 'action', 'id' => "termination_rate_batch_dlt",'onclick'=>"check_btn();", 'content' => 'Delete Search Record','style'=>'display:none;', 'value' => 'submit', 'type' => 'button', 'class' => 'btn pull-right btn btn-line-danger '); |
|
132 | + $form['button_search_delete'] = array('name' => 'action', 'id' => "termination_rate_batch_dlt", 'onclick'=>"check_btn();", 'content' => 'Delete Search Record', 'style'=>'display:none;', 'value' => 'submit', 'type' => 'button', 'class' => 'btn pull-right btn btn-line-danger '); |
|
133 | 133 | |
134 | 134 | /***********************/ |
135 | 135 | /****** |
136 | 136 | ASTPP 3.0 |
137 | 137 | Batch Delete |
138 | 138 | ******/ |
139 | - $form['button_search'] = array('name' => 'action', 'id' => "termination_rate_search_btn",'onclick'=>'search_btn();', 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right margin-x-10'); |
|
139 | + $form['button_search'] = array('name' => 'action', 'id' => "termination_rate_search_btn", 'onclick'=>'search_btn();', 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right margin-x-10'); |
|
140 | 140 | /***********************/ |
141 | 141 | $form['button_reset'] = array('name' => 'action', 'id' => "id_reset", 'content' => 'Clear', 'value' => 'cancel', 'type' => 'reset', 'class' => 'btn btn-line-sky pull-right margin-x-10'); |
142 | 142 | |
@@ -147,14 +147,14 @@ discard block |
||
147 | 147 | function termination_rate_batch_update_form() { |
148 | 148 | $form['forms'] = array("rates/termination_rate_batch_update/", array('id' => "termination_rate_batch_update")); |
149 | 149 | $form['Batch Update'] = array( |
150 | - array('Connect Cost', 'INPUT', array('name' => 'connectcost[connectcost]','id'=>'connectcost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'connectcost[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
151 | - array('Included Seconds', 'INPUT', array('name' => 'includedseconds[includedseconds]','id'=>'includedseconds', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'includedseconds[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
152 | - array('Per Minute Cost', 'INPUT', array('name' => 'cost[cost]','id'=>'cost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'cost[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
150 | + array('Connect Cost', 'INPUT', array('name' => 'connectcost[connectcost]', 'id'=>'connectcost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'connectcost[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
151 | + array('Included Seconds', 'INPUT', array('name' => 'includedseconds[includedseconds]', 'id'=>'includedseconds', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'includedseconds[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
152 | + array('Per Minute Cost', 'INPUT', array('name' => 'cost[cost]', 'id'=>'cost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'cost[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
153 | 153 | |
154 | - array('Increment', 'INPUT', array('name' => 'inc[inc]','id'=>'inc', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'inc[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
155 | - array('Priority', 'INPUT', array('name' => 'precedence[precedence]','id'=>'precedence', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'precedence[operator]','class'=>'update_drp'), '', '', '', 'update_drp_type', ''), |
|
156 | - array('Prepand', 'INPUT', array('name' => 'prepend[prepend]','id'=>'prepend', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'prepend[operator]','class'=>'update_drp'), '', '', '', 'update_drp_type', ''), |
|
157 | - array('Trunk', array('name'=> 'trunk_id[trunk_id]','id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"),array('name'=>'trunk_id[operator]','class'=>'update_drp'), 'update_drp_type'), |
|
154 | + array('Increment', 'INPUT', array('name' => 'inc[inc]', 'id'=>'inc', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'inc[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
155 | + array('Priority', 'INPUT', array('name' => 'precedence[precedence]', 'id'=>'precedence', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'precedence[operator]', 'class'=>'update_drp'), '', '', '', 'update_drp_type', ''), |
|
156 | + array('Prepand', 'INPUT', array('name' => 'prepend[prepend]', 'id'=>'prepend', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'prepend[operator]', 'class'=>'update_drp'), '', '', '', 'update_drp_type', ''), |
|
157 | + array('Trunk', array('name'=> 'trunk_id[trunk_id]', 'id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"), array('name'=>'trunk_id[operator]', 'class'=>'update_drp'), 'update_drp_type'), |
|
158 | 158 | ); |
159 | 159 | |
160 | 160 | $form['button_search'] = array('name' => 'action', 'id' => "batch_update_btn", 'content' => 'Update', 'value' => 'save', 'type' => 'button', 'class' =>'btn btn-line-parrot pull-right'); |
@@ -163,17 +163,17 @@ discard block |
||
163 | 163 | return $form; |
164 | 164 | } |
165 | 165 | function origination_rate_batch_update_form() { |
166 | - $logintype=$this->CI->session->userdata('userlevel_logintype'); |
|
167 | - $trunk=null; |
|
168 | - if($logintype !=1) |
|
169 | - $trunk = array('Force Trunk', array('name'=> 'trunk_id[trunk_id]','id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"),array('name'=>'trunk_id[operator]','class'=>'update_drp'), 'update_drp_type'); |
|
170 | - $form['forms'] = array("rates/origination_rate_batch_update/",array('id' => "origination_rate_batch_update")); |
|
166 | + $logintype = $this->CI->session->userdata('userlevel_logintype'); |
|
167 | + $trunk = null; |
|
168 | + if ($logintype != 1) |
|
169 | + $trunk = array('Force Trunk', array('name'=> 'trunk_id[trunk_id]', 'id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"), array('name'=>'trunk_id[operator]', 'class'=>'update_drp'), 'update_drp_type'); |
|
170 | + $form['forms'] = array("rates/origination_rate_batch_update/", array('id' => "origination_rate_batch_update")); |
|
171 | 171 | $form['Batch Update'] = array( |
172 | - array('Connect Cost', 'INPUT', array('name' => 'connectcost[connectcost]','id'=>'connectcost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'connectcost[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
173 | - array('Included Seconds', 'INPUT', array('name' => 'includedseconds[includedseconds]','id'=>'includedseconds', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1',array('name'=>'includedseconds[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
174 | - array('Per Minute Cost', 'INPUT', array('name' => 'cost[cost]', 'id'=>'cost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1',array('name'=>'cost[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
175 | - array('Increment', 'INPUT', array('name' => 'inc[inc]', 'id'=>'inc', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'inc[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
176 | - array('Rate Group', array('name'=> 'pricelist_id[pricelist_id]','id'=>'pricelist_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0","reseller_id" => "0"),array('name'=>'pricelist_id[operator]','class'=>'update_drp'), 'update_drp_type'), |
|
172 | + array('Connect Cost', 'INPUT', array('name' => 'connectcost[connectcost]', 'id'=>'connectcost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'connectcost[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
173 | + array('Included Seconds', 'INPUT', array('name' => 'includedseconds[includedseconds]', 'id'=>'includedseconds', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'includedseconds[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
174 | + array('Per Minute Cost', 'INPUT', array('name' => 'cost[cost]', 'id'=>'cost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'cost[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
175 | + array('Increment', 'INPUT', array('name' => 'inc[inc]', 'id'=>'inc', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', array('name'=>'inc[operator]', 'class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
|
176 | + array('Rate Group', array('name'=> 'pricelist_id[pricelist_id]', 'id'=>'pricelist_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0", "reseller_id" => "0"), array('name'=>'pricelist_id[operator]', 'class'=>'update_drp'), 'update_drp_type'), |
|
177 | 177 | $trunk, |
178 | 178 | ); |
179 | 179 | |
@@ -186,21 +186,21 @@ discard block |
||
186 | 186 | function build_rates_list_for_reseller() { |
187 | 187 | |
188 | 188 | $account_info = $accountinfo = $this->CI->session->userdata('accountinfo'); |
189 | -$currency_id=$account_info['currency_id']; |
|
190 | -$currency=$this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
189 | +$currency_id = $account_info['currency_id']; |
|
190 | +$currency = $this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
191 | 191 | |
192 | - $grid_field_arr = json_encode(array(array('Code', "140", "pattern", "pattern", "", "get_only_numeric_val","","true","center"), |
|
192 | + $grid_field_arr = json_encode(array(array('Code', "140", "pattern", "pattern", "", "get_only_numeric_val", "", "true", "center"), |
|
193 | 193 | array('Destination', "240", "comment", "", "", ""), |
194 | - array('Connection Cost('.$currency.')', "210", "connectcost", "connectcost", "connectcost", "convert_to_currency","","true","right"), |
|
195 | - array('Included Seconds', "180", "includedseconds", "", "", "","","true","center"), |
|
196 | - array('Per Minute Cost('.$currency.')', "180", "cost", "cost", "cost", "convert_to_currency","","true","right"), |
|
197 | - array('Increment', "140", "inc", "", "", "","","true","center"), |
|
198 | - array('Priority', "155", "precedence", "", "", "","","true","center"), |
|
194 | + array('Connection Cost('.$currency.')', "210", "connectcost", "connectcost", "connectcost", "convert_to_currency", "", "true", "right"), |
|
195 | + array('Included Seconds', "180", "includedseconds", "", "", "", "", "true", "center"), |
|
196 | + array('Per Minute Cost('.$currency.')', "180", "cost", "cost", "cost", "convert_to_currency", "", "true", "right"), |
|
197 | + array('Increment', "140", "inc", "", "", "", "", "true", "center"), |
|
198 | + array('Priority', "155", "precedence", "", "", "", "", "true", "center"), |
|
199 | 199 | )); |
200 | 200 | return $grid_field_arr; |
201 | 201 | } |
202 | 202 | function get_reseller_origination_rate_search_form() { |
203 | - $accountinfo=$this->CI->session->userdata('accountinfo'); |
|
203 | + $accountinfo = $this->CI->session->userdata('accountinfo'); |
|
204 | 204 | |
205 | 205 | $form['forms'] = array("", array('id' => "resellerrates_list_search")); |
206 | 206 | $form['Search My Rates'] = array( |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | array('Initial Increment', 'INPUT', array('name' => 'init_inc[init_inc]', '', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', 'init_inc[init_inc-integer]', '', '', '', 'search_int_type', ''), |
237 | 237 | /**************************************************************/ |
238 | 238 | array('Increment', 'INPUT', array('name' => 'inc[inc]', '', 'size' => '20', 'class' => "text field "), '', 'tOOL TIP', '1', 'inc[inc-integer]', '', '', '', 'search_int_type', ''), |
239 | - array('Rate Group', 'pricelist_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0","reseller_id"=>"0")), |
|
239 | + array('Rate Group', 'pricelist_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'pricelists', 'build_dropdown', 'where_arr', array("status" => "0", "reseller_id"=>"0")), |
|
240 | 240 | array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status', '', ''), |
241 | 241 | array('', 'HIDDEN', 'ajax_search', '1', '', '', ''), |
242 | 242 | array('', 'HIDDEN', 'advance_search', '1', '', '', ''), |
@@ -245,14 +245,14 @@ discard block |
||
245 | 245 | ASTPP 3.0 |
246 | 246 | Batch Delete |
247 | 247 | ******/ |
248 | - $form['button_search_delete'] = array('name' => 'action', 'id' => "origination_rate_batch_dlt",'onclick'=>"check_btn();", 'content' => 'Delete Search Record','style'=>'display:none;', 'value' => 'save', 'type' => 'button', 'class' => 'btn pull-right btn btn-line-danger '); |
|
248 | + $form['button_search_delete'] = array('name' => 'action', 'id' => "origination_rate_batch_dlt", 'onclick'=>"check_btn();", 'content' => 'Delete Search Record', 'style'=>'display:none;', 'value' => 'save', 'type' => 'button', 'class' => 'btn pull-right btn btn-line-danger '); |
|
249 | 249 | |
250 | 250 | /***********************/ |
251 | 251 | /******** |
252 | 252 | ASTPP 3.0 |
253 | 253 | Batch delete |
254 | 254 | *********/ |
255 | - $form['button_search'] = array('name' => 'action', 'id' => "origination_rate_list_search_btn",'onclick'=>'search_btn();', 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right margin-x-10'); |
|
255 | + $form['button_search'] = array('name' => 'action', 'id' => "origination_rate_list_search_btn", 'onclick'=>'search_btn();', 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right margin-x-10'); |
|
256 | 256 | /**************************/ |
257 | 257 | $form['button_reset'] = array('name' => 'action', 'id' => "id_reset", 'content' => 'Clear', 'value' => 'cancel', 'type' => 'reset', 'class' => 'btn btn-line-sky pull-right margin-x-10'); |
258 | 258 | |
@@ -268,34 +268,34 @@ discard block |
||
268 | 268 | |
269 | 269 | function build_termination_rate_for_admin() { |
270 | 270 | $account_info = $accountinfo = $this->CI->session->userdata('accountinfo'); |
271 | -$currency_id=$account_info['currency_id']; |
|
272 | -$currency=$this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
271 | +$currency_id = $account_info['currency_id']; |
|
272 | +$currency = $this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
273 | 273 | |
274 | 274 | // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name); |
275 | - $grid_field_arr = json_encode(array(array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"), |
|
275 | + $grid_field_arr = json_encode(array(array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"), |
|
276 | 276 | /** |
277 | 277 | ASTPP 3.0 |
278 | 278 | For Termination Rate edit on Code |
279 | 279 | **/ |
280 | - array("Code", "78", "pattern", "pattern", "", "get_only_numeric_val","EDITABLE","true","center"), |
|
280 | + array("Code", "78", "pattern", "pattern", "", "get_only_numeric_val", "EDITABLE", "true", "center"), |
|
281 | 281 | /*********************************/ |
282 | - array("Destination", "80", "comment", "", "", "","","true","center"), |
|
283 | - array("Connect Cost($currency)", "125", "connectcost", "connectcost", "connectcost", "convert_to_currency","","true","right"), |
|
284 | - array("Included<br/> Seconds", "70", "includedseconds", "", "", "","","true","center"), |
|
285 | - array("Per Minute <br/>Cost($currency)", "100", "cost", "cost", "cost", "convert_to_currency","","true","right"), |
|
286 | - array("Initial <br/> Increment", "95", "init_inc", "", "", "","","true","center"), |
|
287 | - array("Increment", "75", "inc", "", "", "","","true","center"), |
|
288 | - array("Priority", "70", "precedence", "", "", "","","true","center"), |
|
289 | - array("Strip","60", "strip", "", "", "","","true","center"), |
|
290 | - array("Prepend", "70", "prepend", "pattern", "", "get_only_numeric_val","","true","center"), |
|
291 | - array("Trunk", "80", "trunk_id", "name", "trunks", "get_field_name","","true","center"), |
|
282 | + array("Destination", "80", "comment", "", "", "", "", "true", "center"), |
|
283 | + array("Connect Cost($currency)", "125", "connectcost", "connectcost", "connectcost", "convert_to_currency", "", "true", "right"), |
|
284 | + array("Included<br/> Seconds", "70", "includedseconds", "", "", "", "", "true", "center"), |
|
285 | + array("Per Minute <br/>Cost($currency)", "100", "cost", "cost", "cost", "convert_to_currency", "", "true", "right"), |
|
286 | + array("Initial <br/> Increment", "95", "init_inc", "", "", "", "", "true", "center"), |
|
287 | + array("Increment", "75", "inc", "", "", "", "", "true", "center"), |
|
288 | + array("Priority", "70", "precedence", "", "", "", "", "true", "center"), |
|
289 | + array("Strip", "60", "strip", "", "", "", "", "true", "center"), |
|
290 | + array("Prepend", "70", "prepend", "pattern", "", "get_only_numeric_val", "", "true", "center"), |
|
291 | + array("Trunk", "80", "trunk_id", "name", "trunks", "get_field_name", "", "true", "center"), |
|
292 | 292 | /* |
293 | 293 | ASTPP 3.0 |
294 | 294 | creation field show in grid |
295 | 295 | */ |
296 | - array("Status", "100", "status", "status", "outbound_routes", "get_status","","true","center"), |
|
296 | + array("Status", "100", "status", "status", "outbound_routes", "get_status", "", "true", "center"), |
|
297 | 297 | // array("Created<br/>Date", "80", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"), |
298 | - array("Modified Date", "150", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"), |
|
298 | + array("Modified Date", "150", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"), |
|
299 | 299 | /********************************************************************/ |
300 | 300 | /* |
301 | 301 | ASTPP 3.0 |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | |
305 | 305 | /***********************************************************************/ |
306 | 306 | // array("Reseller", "103", "reseller_id", "number", "accounts", "get_field_name"), |
307 | - array("Action", "80", "", "", "", array("EDIT" => array("url" => "rates/termination_rate_edit/", "mode" => "popup","layout"=>"medium"), |
|
307 | + array("Action", "80", "", "", "", array("EDIT" => array("url" => "rates/termination_rate_edit/", "mode" => "popup", "layout"=>"medium"), |
|
308 | 308 | "DELETE" => array("url" => "rates/termination_rate_delete/", "mode" => "single"))) |
309 | 309 | )); |
310 | 310 | return $grid_field_arr; |
@@ -317,36 +317,36 @@ discard block |
||
317 | 317 | */ |
318 | 318 | function build_origination_rate_list_for_admin() { |
319 | 319 | $account_info = $accountinfo = $this->CI->session->userdata('accountinfo'); |
320 | -$currency_id=$account_info['currency_id']; |
|
321 | -$currency=$this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
320 | +$currency_id = $account_info['currency_id']; |
|
321 | +$currency = $this->CI->common->get_field_name('currency', 'currency', $currency_id); |
|
322 | 322 | |
323 | 323 | // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name); |
324 | - $grid_field_arr = json_encode(array(array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"), |
|
324 | + $grid_field_arr = json_encode(array(array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"), |
|
325 | 325 | /** |
326 | 326 | ASTPP 3.0 |
327 | 327 | For Origination rate edit on code |
328 | 328 | **/ |
329 | - array("Code", "75", "pattern", "pattern", "", "get_only_numeric_val","EDITABLE","true","center"), |
|
329 | + array("Code", "75", "pattern", "pattern", "", "get_only_numeric_val", "EDITABLE", "true", "center"), |
|
330 | 330 | /************************************/ |
331 | - array("Destination", "100", "comment", "", "", "","","true","center"), |
|
332 | - array("Connect Cost($currency)", "130", "connectcost", "connectcost", "connectcost", "convert_to_currency","","true","right"), |
|
333 | - array("Included Seconds", "120", "includedseconds", "", "", "","","true","center"), |
|
334 | - array("Per Minute Cost($currency)", "150", "cost", "cost", "cost", "convert_to_currency","","true","right"), |
|
331 | + array("Destination", "100", "comment", "", "", "", "", "true", "center"), |
|
332 | + array("Connect Cost($currency)", "130", "connectcost", "connectcost", "connectcost", "convert_to_currency", "", "true", "right"), |
|
333 | + array("Included Seconds", "120", "includedseconds", "", "", "", "", "true", "center"), |
|
334 | + array("Per Minute Cost($currency)", "150", "cost", "cost", "cost", "convert_to_currency", "", "true", "right"), |
|
335 | 335 | /** |
336 | 336 | ASTPP 3.0 |
337 | 337 | For Add Initial Increment field |
338 | 338 | **/ |
339 | - array("Initial Increment", "130", "init_inc", "", "", "","","true","center"), |
|
339 | + array("Initial Increment", "130", "init_inc", "", "", "", "", "true", "center"), |
|
340 | 340 | /*******************************************************************/ |
341 | - array("Increment", "90", "inc", "", "", "","","true","center"), |
|
341 | + array("Increment", "90", "inc", "", "", "", "", "true", "center"), |
|
342 | 342 | //array("Priority", "72", "precedence", "", "", "","","true","center"), |
343 | - array("Rate Group", "90", "pricelist_id", "name", "pricelists", "get_field_name","","true","center"), |
|
343 | + array("Rate Group", "90", "pricelist_id", "name", "pricelists", "get_field_name", "", "true", "center"), |
|
344 | 344 | /* |
345 | 345 | ASTPP 3.0 creation field show in grid |
346 | 346 | */ |
347 | - array("Status", "100", "status", "status", "routes", "get_status","","true","center"), |
|
347 | + array("Status", "100", "status", "status", "routes", "get_status", "", "true", "center"), |
|
348 | 348 | // array("Created<br/>Date", "80", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"), |
349 | - array("Modified Date", "150", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"), |
|
349 | + array("Modified Date", "150", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"), |
|
350 | 350 | |
351 | 351 | /********************************************************************/ |
352 | 352 | /* |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | chnage in status active or inactive |
355 | 355 | */ |
356 | 356 | |
357 | - array("Action", "95", "", "", "", array("EDIT" => array("url" => "rates/origination_rate_edit/", "mode" => "popup","layout"=>"medium"), |
|
357 | + array("Action", "95", "", "", "", array("EDIT" => array("url" => "rates/origination_rate_edit/", "mode" => "popup", "layout"=>"medium"), |
|
358 | 358 | "DELETE" => array("url" => "/rates/origination_rate_delete/", "mode" => "single"))) |
359 | 359 | )); |
360 | 360 | return $grid_field_arr; |
@@ -362,19 +362,19 @@ discard block |
||
362 | 362 | /****************************************************************************************/ |
363 | 363 | |
364 | 364 | function build_grid_buttons() { |
365 | - $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/rates/termination_rate_add/", "popup","medium"), |
|
366 | - array("Delete", "btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/rates/termination_rate_delete_multiple/"), |
|
367 | - array("import","btn btn-line-blue" ,"fa fa-upload fa-lg", "button_action", "/rates/termination_rate_import/", 'single'), |
|
368 | - array("Export","btn btn-xing" ," fa fa-download fa-lg", "button_action", "/rates/termination_rate_export_cdr_xls/", 'single') |
|
365 | + $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/rates/termination_rate_add/", "popup", "medium"), |
|
366 | + array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/rates/termination_rate_delete_multiple/"), |
|
367 | + array("import", "btn btn-line-blue", "fa fa-upload fa-lg", "button_action", "/rates/termination_rate_import/", 'single'), |
|
368 | + array("Export", "btn btn-xing", " fa fa-download fa-lg", "button_action", "/rates/termination_rate_export_cdr_xls/", 'single') |
|
369 | 369 | )); |
370 | 370 | return $buttons_json; |
371 | 371 | } |
372 | 372 | |
373 | 373 | function build_grid_buttons_origination_rate() { |
374 | - $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/rates/origination_rate_add/", "popup","medium"), |
|
375 | - array("Delete", "btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/rates/origination_rate_delete_multiple/"), |
|
376 | - array("import", "btn btn-line-blue","fa fa-upload fa-lg", "button_action", "/rates/origination_rate_import/", 'single'), |
|
377 | - array("Export","btn btn-xing" ," fa fa-download fa-lg", "button_action", "/rates/origination_rate_export_cdr_xls/", 'single') |
|
374 | + $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/rates/origination_rate_add/", "popup", "medium"), |
|
375 | + array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/rates/origination_rate_delete_multiple/"), |
|
376 | + array("import", "btn btn-line-blue", "fa fa-upload fa-lg", "button_action", "/rates/origination_rate_import/", 'single'), |
|
377 | + array("Export", "btn btn-xing", " fa fa-download fa-lg", "button_action", "/rates/origination_rate_export_cdr_xls/", 'single') |
|
378 | 378 | |
379 | 379 | )); |
380 | 380 | return $buttons_json; |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | function build_termination_rate_list_for_customer() { |
384 | 384 | // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name); |
385 | 385 | $grid_field_arr = json_encode(array( |
386 | - array("<input type='checkbox' name='chkAll' class='ace checking checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"), |
|
386 | + array("<input type='checkbox' name='chkAll' class='ace checking checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"), |
|
387 | 387 | array("Code", "70", "pattern", "pattern", "", "get_only_numeric_val"), |
388 | 388 | array("Increment", "75", "inc", "", "", ""), |
389 | 389 | array("Connect <br> Charge", "100", "connectcost", "connectcost", "connectcost", "convert_to_currency"), |
@@ -398,16 +398,16 @@ discard block |
||
398 | 398 | function build_block_pattern_list_for_customer() { |
399 | 399 | // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name); |
400 | 400 | $grid_field_arr = json_encode(array( |
401 | - array("<input type='checkbox' name='chkAll1' class='ace checking'/><label class='lbl'></label>", "30", "", "", "", "","","false","center","PatternChkBox"), |
|
401 | + array("<input type='checkbox' name='chkAll1' class='ace checking'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center", "PatternChkBox"), |
|
402 | 402 | array("Code", "350", "pattern", "pattern", "", "get_only_numeric_val"), |
403 | 403 | array("Destination", "350", "comment", "", "", ""), |
404 | 404 | )); |
405 | 405 | return $grid_field_arr; |
406 | 406 | } |
407 | - function build_pattern_list_for_customer($accountid,$accounttype) { |
|
407 | + function build_pattern_list_for_customer($accountid, $accounttype) { |
|
408 | 408 | |
409 | 409 | $grid_field_arr = json_encode(array( |
410 | - array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"), |
|
410 | + array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"), |
|
411 | 411 | array("Code", "450", "blocked_patterns", "blocked_patterns", "", "get_only_numeric_val"), |
412 | 412 | array("Destination", "450", "destination", "", "", ""), |
413 | 413 | array("Action", "100", "", "", "", array("DELETE" => array("url" => "accounts/".$accounttype."_delete_block_pattern/$accountid/", "mode" => "single"))) |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | } |
417 | 417 | |
418 | 418 | function set_pattern_grid_buttons($accountid) { |
419 | - $buttons_json = json_encode(array(array("Add Prefixes","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/accounts/customer_add_blockpatterns/$accountid", "popup"))); |
|
419 | + $buttons_json = json_encode(array(array("Add Prefixes", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/accounts/customer_add_blockpatterns/$accountid", "popup"))); |
|
420 | 420 | return $buttons_json; |
421 | 421 | } |
422 | 422 | |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | |
435 | 435 | |
436 | 436 | function build_grid_buttons_rates() { |
437 | - $buttons_json = json_encode(array(array("Export","btn btn-xing" ," fa fa-download fa-lg", "button_action", "/rates/resellersrates_xls/", 'single'))); |
|
437 | + $buttons_json = json_encode(array(array("Export", "btn btn-xing", " fa fa-download fa-lg", "button_action", "/rates/resellersrates_xls/", 'single'))); |
|
438 | 438 | return $buttons_json; |
439 | 439 | } |
440 | 440 |
@@ -20,8 +20,9 @@ discard block |
||
20 | 20 | # You should have received a copy of the GNU Affero General Public License |
21 | 21 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 | 22 | ############################################################################### |
23 | -if (!defined('BASEPATH')) |
|
24 | - exit('No direct script access allowed'); |
|
23 | +if (!defined('BASEPATH')) { |
|
24 | + exit('No direct script access allowed'); |
|
25 | +} |
|
25 | 26 | |
26 | 27 | class rates_form { |
27 | 28 | function __construct($library_name = '') { |
@@ -62,8 +63,9 @@ discard block |
||
62 | 63 | function get_origination_rate_form_fields() { |
63 | 64 | $logintype=$this->CI->session->userdata('userlevel_logintype'); |
64 | 65 | $trunk=null; |
65 | - if($logintype !=1) |
|
66 | - $trunk = array('Force Trunk', 'trunk_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")); |
|
66 | + if($logintype !=1) { |
|
67 | + $trunk = array('Force Trunk', 'trunk_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0")); |
|
68 | + } |
|
67 | 69 | $form['forms'] = array(base_url() . 'rates/origination_rate_save/', array('id' => 'origination_rate_form', 'method' => 'POST', 'name' => 'origination_rate_form')); |
68 | 70 | $form['Rate Information'] = array( |
69 | 71 | array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''), |
@@ -165,8 +167,9 @@ discard block |
||
165 | 167 | function origination_rate_batch_update_form() { |
166 | 168 | $logintype=$this->CI->session->userdata('userlevel_logintype'); |
167 | 169 | $trunk=null; |
168 | - if($logintype !=1) |
|
169 | - $trunk = array('Force Trunk', array('name'=> 'trunk_id[trunk_id]','id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"),array('name'=>'trunk_id[operator]','class'=>'update_drp'), 'update_drp_type'); |
|
170 | + if($logintype !=1) { |
|
171 | + $trunk = array('Force Trunk', array('name'=> 'trunk_id[trunk_id]','id'=>'trunk_id'), 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'trunks', 'build_dropdown', 'where_arr', array("status" => "0"),array('name'=>'trunk_id[operator]','class'=>'update_drp'), 'update_drp_type'); |
|
172 | + } |
|
170 | 173 | $form['forms'] = array("rates/origination_rate_batch_update/",array('id' => "origination_rate_batch_update")); |
171 | 174 | $form['Batch Update'] = array( |
172 | 175 | array('Connect Cost', 'INPUT', array('name' => 'connectcost[connectcost]','id'=>'connectcost', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', array('name'=>'connectcost[operator]','class'=>'update_drp'), '', '', '', 'update_int_type', ''), |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | <div class="col-md-12"> |
19 | 19 | <div class="w-box"> |
20 | 20 | <span style="margin-left:10px; text-align: center;background-color: none;color:#DD191D;"> |
21 | - <? if(isset($error) && !empty($error)) { |
|
21 | + <? if (isset($error) && ! empty($error)) { |
|
22 | 22 | echo $error; |
23 | 23 | }?> |
24 | 24 | </span> |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | <div class="col-md-12 no-padding"> |
35 | 35 | <label class="col-md-3">Trunk List:</label> |
36 | 36 | <div class=""> |
37 | - <? $trunklist = form_dropdown('trunk_id', $this->db_model->build_dropdown("id,name", "trunks", "where_arr",array("status " => "0")), ''); |
|
37 | + <? $trunklist = form_dropdown('trunk_id', $this->db_model->build_dropdown("id,name", "trunks", "where_arr", array("status " => "0")), ''); |
|
38 | 38 | echo $trunklist; ?></div> |
39 | 39 | </div> |
40 | 40 | <div class="col-md-12 no-padding"> |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | <?}?> |
89 | 89 | |
90 | 90 | <?php |
91 | - if(isset($csv_tmp_data) && !empty($csv_tmp_data)){ ?> |
|
91 | + if (isset($csv_tmp_data) && ! empty($csv_tmp_data)) { ?> |
|
92 | 92 | |
93 | 93 | <section class="slice color-three padding-b-20"> |
94 | 94 | <div class="w-section inverse no-padding"> |
@@ -97,14 +97,14 @@ discard block |
||
97 | 97 | <div class="col-md-12 margin-t-10"> |
98 | 98 | <form id="import_form" name="import_form" action="<?=base_url()?>rates/termination_rate_rates_import/<?= $trunkid?>/<?=$check_header?>/" method="POST"> |
99 | 99 | <table width="100%" border="1" class="details_table table"> |
100 | - <? $cnt =7; |
|
101 | - foreach($csv_tmp_data as $csv_key => $csv_value){ |
|
102 | - if($csv_key < 15){ |
|
100 | + <? $cnt = 7; |
|
101 | + foreach ($csv_tmp_data as $csv_key => $csv_value) { |
|
102 | + if ($csv_key < 15) { |
|
103 | 103 | echo "<tr>"; |
104 | - foreach($csv_value as $field_name => $field_val){ |
|
105 | - if($csv_key == 0){ |
|
104 | + foreach ($csv_value as $field_name => $field_val) { |
|
105 | + if ($csv_key == 0) { |
|
106 | 106 | echo "<th>".ucfirst($field_name)."</th>"; |
107 | - }else{ |
|
107 | + } else { |
|
108 | 108 | echo "<td class='portlet-content'>".$field_val."</td>"; |
109 | 109 | } |
110 | 110 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | foreach($csv_value as $field_name => $field_val){ |
105 | 105 | if($csv_key == 0){ |
106 | 106 | echo "<th>".ucfirst($field_name)."</th>"; |
107 | - }else{ |
|
107 | + } else{ |
|
108 | 108 | echo "<td class='portlet-content'>".$field_val."</td>"; |
109 | 109 | } |
110 | 110 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | <div class="col-md-12"> |
16 | 16 | <div class="w-box"> |
17 | 17 | <span style="margin-left:10px; text-align: center;background-color: none;color:#DD191D;"> |
18 | - <? if(isset($error) && !empty($error)) { |
|
18 | + <? if (isset($error) && ! empty($error)) { |
|
19 | 19 | echo $error; |
20 | 20 | }?> |
21 | 21 | </span> |
@@ -31,19 +31,19 @@ discard block |
||
31 | 31 | <div class="col-md-12 no-padding"> |
32 | 32 | <label class="col-md-3">Rate Group:</label> |
33 | 33 | <div> |
34 | - <? $pricelists = form_dropdown('pricelist_id', $this->db_model->build_dropdown("id,name", "pricelists","where_arr", array("reseller_id" => "0", "status" => "0")), ''); |
|
34 | + <? $pricelists = form_dropdown('pricelist_id', $this->db_model->build_dropdown("id,name", "pricelists", "where_arr", array("reseller_id" => "0", "status" => "0")), ''); |
|
35 | 35 | echo $pricelists; |
36 | 36 | ?> |
37 | 37 | </div> |
38 | 38 | </div> |
39 | 39 | <? |
40 | - $logintype=$this->session->userdata('userlevel_logintype'); |
|
40 | + $logintype = $this->session->userdata('userlevel_logintype'); |
|
41 | 41 | // $trunk=null; |
42 | - if($logintype !=1) { ?> |
|
42 | + if ($logintype != 1) { ?> |
|
43 | 43 | <div class="col-md-12 no-padding"> |
44 | 44 | <label class="col-md-3">Force Trunk:</label> |
45 | 45 | <div> |
46 | - <? $trunklist = form_dropdown_all('trunk_id', $this->db_model->build_dropdown("id,name", "trunks","where_arr", array("status" => "0")), ''); |
|
46 | + <? $trunklist = form_dropdown_all('trunk_id', $this->db_model->build_dropdown("id,name", "trunks", "where_arr", array("status" => "0")), ''); |
|
47 | 47 | echo $trunklist; |
48 | 48 | ?> |
49 | 49 | </div> |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | <?}?> |
101 | 101 | |
102 | 102 | <?php |
103 | - if(isset($csv_tmp_data) && !empty($csv_tmp_data)){ ?> |
|
103 | + if (isset($csv_tmp_data) && ! empty($csv_tmp_data)) { ?> |
|
104 | 104 | |
105 | 105 | <section class="slice color-three"> |
106 | 106 | <div class="w-section inverse no-padding"> |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | <div class="col-md-12 margin-t-10"> |
110 | 110 | <form id="import_form" name="import_form" action="<?=base_url()?>rates/origination_rate_import_file/<?= $pricelistid?>/<?=$trunkid?><?=$check_header?>/" method="POST"> |
111 | 111 | <table width="100%" border="1" class="details_table table"> |
112 | - <? $cnt =7; |
|
113 | - foreach($csv_tmp_data as $csv_key => $csv_value){ |
|
114 | - if($csv_key < 15){ |
|
112 | + <? $cnt = 7; |
|
113 | + foreach ($csv_tmp_data as $csv_key => $csv_value) { |
|
114 | + if ($csv_key < 15) { |
|
115 | 115 | echo "<tr>"; |
116 | - foreach($csv_value as $field_name => $field_val){ |
|
117 | - if($csv_key == 0){ |
|
116 | + foreach ($csv_value as $field_name => $field_val) { |
|
117 | + if ($csv_key == 0) { |
|
118 | 118 | echo "<th>".ucfirst($field_name)."</th>"; |
119 | - }else{ |
|
119 | + } else { |
|
120 | 120 | echo "<td class='portlet-content'>".$field_val."</td>"; |
121 | 121 | } |
122 | 122 | } |
@@ -116,7 +116,7 @@ |
||
116 | 116 | foreach($csv_value as $field_name => $field_val){ |
117 | 117 | if($csv_key == 0){ |
118 | 118 | echo "<th>".ucfirst($field_name)."</th>"; |
119 | - }else{ |
|
119 | + } else{ |
|
120 | 120 | echo "<td class='portlet-content'>".$field_val."</td>"; |
121 | 121 | } |
122 | 122 | } |
@@ -51,49 +51,49 @@ |
||
51 | 51 | $data['reseller_id'] = $data['key_unique']; |
52 | 52 | unset($data['agreeCheck']); |
53 | 53 | unset($data['key_unique']); |
54 | - $data['creation']=gmdate('Y-m-d H:i:s'); |
|
54 | + $data['creation'] = gmdate('Y-m-d H:i:s'); |
|
55 | 55 | $data['expiry'] = date('Y-m-d H:i:s', strtotime('+10 years')); |
56 | - $this->db->insert("accounts",$data); |
|
56 | + $this->db->insert("accounts", $data); |
|
57 | 57 | return $this->db->insert_id(); |
58 | 58 | } |
59 | 59 | |
60 | - function check_user($accno,$email,$balance) |
|
60 | + function check_user($accno, $email, $balance) |
|
61 | 61 | { |
62 | - $info = array("number"=>$accno,"email"=>$email,"status"=>1); |
|
62 | + $info = array("number"=>$accno, "email"=>$email, "status"=>1); |
|
63 | 63 | $this->db->where($info); |
64 | 64 | $this->db->select('*'); |
65 | - $acc_res=$this->db->get('accounts'); |
|
66 | - if($acc_res->num_rows() > 0) |
|
65 | + $acc_res = $this->db->get('accounts'); |
|
66 | + if ($acc_res->num_rows() > 0) |
|
67 | 67 | { |
68 | - $acc_res=$acc_res->result_array(); |
|
69 | - $acc_res=$acc_res[0]; |
|
70 | - $this->db->where('pricelist_id',$acc_res['pricelist_id']); |
|
68 | + $acc_res = $acc_res->result_array(); |
|
69 | + $acc_res = $acc_res[0]; |
|
70 | + $this->db->where('pricelist_id', $acc_res['pricelist_id']); |
|
71 | 71 | $this->db->select("*"); |
72 | - $charge_res=$this->db->get('charges'); |
|
72 | + $charge_res = $this->db->get('charges'); |
|
73 | 73 | |
74 | - if($charge_res->num_rows() > 0){ |
|
75 | - $charge_res=$charge_res->result_array(); |
|
76 | - $charge_res=$charge_res[0]; |
|
77 | - $charge_acc_arr=array( |
|
74 | + if ($charge_res->num_rows() > 0) { |
|
75 | + $charge_res = $charge_res->result_array(); |
|
76 | + $charge_res = $charge_res[0]; |
|
77 | + $charge_acc_arr = array( |
|
78 | 78 | "charge_id"=>$charge_res['id'], |
79 | 79 | "accountid"=>$acc_res['id'], |
80 | 80 | "status"=>0, |
81 | 81 | "assign_date"=>date('Y-m-d H:i:s') |
82 | 82 | ); |
83 | - }else{ |
|
84 | - $charge_res=$charge_res->result_array(); |
|
83 | + } else { |
|
84 | + $charge_res = $charge_res->result_array(); |
|
85 | 85 | //echo "<pre>"; print_r($charge_res); exit; |
86 | 86 | $charge_acc_arr = array("charge_id"=>'id', |
87 | 87 | "accountid"=>$acc_res['id'], |
88 | 88 | "assign_date"=>date('Y-m-d H:i:s')); |
89 | 89 | } |
90 | - $result=$this->db->insert("charge_to_account",$charge_acc_arr); |
|
91 | - $update = array("status" => 0,"balance" => $balance ); |
|
90 | + $result = $this->db->insert("charge_to_account", $charge_acc_arr); |
|
91 | + $update = array("status" => 0, "balance" => $balance); |
|
92 | 92 | $this->db->where($info); |
93 | 93 | $result = $this->db->update('accounts', $update); |
94 | - $sip_device_update = array('username'=>$accno,"status"=>1); |
|
94 | + $sip_device_update = array('username'=>$accno, "status"=>1); |
|
95 | 95 | return 1; |
96 | - } else{ |
|
96 | + } else { |
|
97 | 97 | return 0; |
98 | 98 | } |
99 | 99 | } |
@@ -80,7 +80,7 @@ |
||
80 | 80 | "status"=>0, |
81 | 81 | "assign_date"=>date('Y-m-d H:i:s') |
82 | 82 | ); |
83 | - }else{ |
|
83 | + } else{ |
|
84 | 84 | $charge_res=$charge_res->result_array(); |
85 | 85 | //echo "<pre>"; print_r($charge_res); exit; |
86 | 86 | $charge_acc_arr = array("charge_id"=>'id', |
@@ -24,468 +24,468 @@ |
||
24 | 24 | |
25 | 25 | class Signup extends MX_Controller { |
26 | 26 | |
27 | - function signup() { |
|
28 | - parent::__construct(); |
|
29 | - $this->load->model('signup_model'); |
|
30 | - $this->load->helper('captcha'); |
|
31 | - $this->load->helper('template_inheritance'); |
|
32 | - //$this->load->library('form_validation'); |
|
33 | - $this->load->library('astpp/common'); |
|
34 | - $this->load->library('astpp/email_lib'); |
|
35 | - $this->load->model('db_model'); |
|
36 | - $this->load->model('common_model'); |
|
37 | - $this->load->library('session'); |
|
38 | - $this->load->library('encrypt'); |
|
39 | - $this->load->model('Astpp_common'); |
|
40 | - |
|
41 | - error_reporting(-1); |
|
42 | - ini_set('display_errors', 'On'); |
|
43 | - |
|
44 | - $data['row'] = $this->signup_model->get_rate(); |
|
45 | - } |
|
46 | - |
|
47 | - function index($key = "") { |
|
48 | - |
|
49 | - if (Common_model::$global_config['system_config']['enable_signup'] == 1) |
|
27 | + function signup() { |
|
28 | + parent::__construct(); |
|
29 | + $this->load->model('signup_model'); |
|
30 | + $this->load->helper('captcha'); |
|
31 | + $this->load->helper('template_inheritance'); |
|
32 | + //$this->load->library('form_validation'); |
|
33 | + $this->load->library('astpp/common'); |
|
34 | + $this->load->library('astpp/email_lib'); |
|
35 | + $this->load->model('db_model'); |
|
36 | + $this->load->model('common_model'); |
|
37 | + $this->load->library('session'); |
|
38 | + $this->load->library('encrypt'); |
|
39 | + $this->load->model('Astpp_common'); |
|
40 | + |
|
41 | + error_reporting(-1); |
|
42 | + ini_set('display_errors', 'On'); |
|
43 | + |
|
44 | + $data['row'] = $this->signup_model->get_rate(); |
|
45 | + } |
|
46 | + |
|
47 | + function index($key = "") { |
|
48 | + |
|
49 | + if (Common_model::$global_config['system_config']['enable_signup'] == 1) |
|
50 | 50 | { |
51 | - redirect(base_url()); |
|
51 | + redirect(base_url()); |
|
52 | 52 | } |
53 | 53 | |
54 | - $userCaptcha = $this->input->post('userCaptcha'); |
|
55 | - $random_number = substr(number_format(time() * rand(), 0, '', ''), 0, 6); |
|
56 | - $accountinfo = (array)$this->db->get_where('accounts', array('type'=>-1))->first_row(); |
|
57 | - $data['timezone_id'] = ( ! $accountinfo['timezone_id']) ? 1 : $accountinfo['timezone_id']; |
|
58 | - $data['currency_id'] = ( ! $accountinfo['currency_id']) ? 1 : $accountinfo['currency_id']; |
|
59 | - $data['country_id'] = ( ! $accountinfo['country_id']) ? 1 : $accountinfo['country_id']; |
|
60 | - |
|
61 | - $vals = array( |
|
62 | - 'word' => $random_number, |
|
63 | - 'img_path' => getcwd().'/assets/captcha/', |
|
64 | - 'img_url' => base_url().'assets/captcha/', |
|
65 | - //'font_path' => './fonts/impact.ttf', |
|
66 | - 'img_width' => '243', |
|
67 | - 'img_height' => '50', |
|
68 | - 'expiration' => '3600' |
|
69 | - ); |
|
70 | - |
|
71 | - if (isset($key) && $key != '') { |
|
72 | - $data['key_unique'] = $key; |
|
73 | - } else { |
|
74 | - $data['key_unique'] = "admin"; |
|
75 | - } |
|
76 | - $unique = $data['key_unique']; |
|
77 | - |
|
78 | - if ($unique != "admin") { |
|
79 | - $unique = $this->common->decode_params(trim($unique)); |
|
80 | - $decoded_str = $this->common->decode($unique); |
|
81 | - $unique = $decoded_str; |
|
82 | - $query = $this->db_model->getSelect("*", 'accounts', array('id' => $unique, "deleted" => "0")); |
|
83 | - if ($query->num_rows() == 0) { |
|
84 | - redirect(base_url()."signup/signup_inactive"); |
|
85 | - } |
|
86 | - if ($query->num_rows() > 0) { |
|
87 | - $query = $query->result_array(); |
|
88 | - $query = $query[0]; |
|
89 | - |
|
90 | - if ($query['status'] != 0) { |
|
91 | - redirect(base_url()."signup/signup_inactive"); |
|
92 | - } |
|
93 | - } |
|
94 | - } |
|
95 | - $data['captcha'] = create_captcha($vals); |
|
96 | - $this->session->set_userdata('captchaWord', $data['captcha']['word']); |
|
97 | - $this->load->view('view_signup', $data); |
|
98 | - } |
|
99 | - |
|
100 | - public function check_captcha($str) { |
|
101 | - $word = $this->session->userdata('captchaWord'); |
|
102 | - if (strcmp(strtoupper($str), strtoupper($word)) == 0) { |
|
103 | - return true; |
|
104 | - } else { |
|
105 | - $this->form_validation->set_message('check_captcha', 'Please enter correct words!'); |
|
106 | - return false; |
|
107 | - } |
|
108 | - } |
|
109 | - |
|
110 | - function terms_check() { |
|
111 | - if (isset($_POST['agreeCheck'])) { |
|
112 | - return true; |
|
113 | - } |
|
114 | - $this->form_validation->set_message('terms_check', 'THIS IS SOOOOO REQUIRED, DUDE!'); |
|
115 | - return false; |
|
116 | - } |
|
117 | - |
|
118 | - function signup_save($id = "") { |
|
119 | - if (empty($_POST)) { |
|
120 | - redirect(base_url()."signup/"); |
|
121 | - } else { |
|
122 | - $post_values = $this->input->post(); |
|
123 | - $userCaptcha = $this->input->post('userCaptcha'); |
|
124 | - $cnt_result = $this->db_model->countQuery("*", 'accounts', array('email' => $post_values['email'])); |
|
125 | - |
|
126 | - if ($userCaptcha != $this->session->userdata('captchaWord') || ! filter_var($this->input->post('email'), FILTER_VALIDATE_EMAIL) || $cnt_result > 0) { |
|
127 | - if ( ! filter_var($this->input->post('email'), FILTER_VALIDATE_EMAIL)) { |
|
128 | - $data['error']['email'] = "<div style='color: red;'> Please enter proper email </div>"; |
|
129 | - } |
|
130 | - if ($userCaptcha != $this->session->userdata('captchaWord')) { |
|
131 | - $data['error']['userCaptcha'] = "<div style='color: red;'>Please enter valid Captcha code</div>"; |
|
132 | - } |
|
133 | - if ($cnt_result > 0) { |
|
134 | - $data['error']['email'] = "<div style='color: red;'>Email Address already exists</div>"; |
|
135 | - } |
|
136 | - $random_number = substr(number_format(time() * rand(), 0, '', ''), 0, 6); |
|
137 | - $vals = array( |
|
138 | - 'word' => $random_number, |
|
139 | - 'img_path' => getcwd().'/assets/captcha/', |
|
140 | - 'img_url' => base_url().'assets/captcha/', |
|
141 | - //'font_path' => './fonts/impact.ttf', |
|
142 | - 'img_width' => '243', |
|
143 | - 'img_height' => '50', |
|
144 | - 'expiration' => '3600' |
|
145 | - ); |
|
146 | - //echo "<pre>"; print_r($_POST); exit; |
|
147 | - if (isset($_POST['key_unique']) && $_POST['key_unique'] == "admin") { |
|
148 | - $data['key_unique'] = $_POST['key_unique']; |
|
149 | - } |
|
54 | + $userCaptcha = $this->input->post('userCaptcha'); |
|
55 | + $random_number = substr(number_format(time() * rand(), 0, '', ''), 0, 6); |
|
56 | + $accountinfo = (array)$this->db->get_where('accounts', array('type'=>-1))->first_row(); |
|
57 | + $data['timezone_id'] = ( ! $accountinfo['timezone_id']) ? 1 : $accountinfo['timezone_id']; |
|
58 | + $data['currency_id'] = ( ! $accountinfo['currency_id']) ? 1 : $accountinfo['currency_id']; |
|
59 | + $data['country_id'] = ( ! $accountinfo['country_id']) ? 1 : $accountinfo['country_id']; |
|
60 | + |
|
61 | + $vals = array( |
|
62 | + 'word' => $random_number, |
|
63 | + 'img_path' => getcwd().'/assets/captcha/', |
|
64 | + 'img_url' => base_url().'assets/captcha/', |
|
65 | + //'font_path' => './fonts/impact.ttf', |
|
66 | + 'img_width' => '243', |
|
67 | + 'img_height' => '50', |
|
68 | + 'expiration' => '3600' |
|
69 | + ); |
|
70 | + |
|
71 | + if (isset($key) && $key != '') { |
|
72 | + $data['key_unique'] = $key; |
|
73 | + } else { |
|
74 | + $data['key_unique'] = "admin"; |
|
75 | + } |
|
76 | + $unique = $data['key_unique']; |
|
77 | + |
|
78 | + if ($unique != "admin") { |
|
79 | + $unique = $this->common->decode_params(trim($unique)); |
|
80 | + $decoded_str = $this->common->decode($unique); |
|
81 | + $unique = $decoded_str; |
|
82 | + $query = $this->db_model->getSelect("*", 'accounts', array('id' => $unique, "deleted" => "0")); |
|
83 | + if ($query->num_rows() == 0) { |
|
84 | + redirect(base_url()."signup/signup_inactive"); |
|
85 | + } |
|
86 | + if ($query->num_rows() > 0) { |
|
87 | + $query = $query->result_array(); |
|
88 | + $query = $query[0]; |
|
89 | + |
|
90 | + if ($query['status'] != 0) { |
|
91 | + redirect(base_url()."signup/signup_inactive"); |
|
92 | + } |
|
93 | + } |
|
94 | + } |
|
95 | + $data['captcha'] = create_captcha($vals); |
|
96 | + $this->session->set_userdata('captchaWord', $data['captcha']['word']); |
|
97 | + $this->load->view('view_signup', $data); |
|
98 | + } |
|
99 | + |
|
100 | + public function check_captcha($str) { |
|
101 | + $word = $this->session->userdata('captchaWord'); |
|
102 | + if (strcmp(strtoupper($str), strtoupper($word)) == 0) { |
|
103 | + return true; |
|
104 | + } else { |
|
105 | + $this->form_validation->set_message('check_captcha', 'Please enter correct words!'); |
|
106 | + return false; |
|
107 | + } |
|
108 | + } |
|
109 | + |
|
110 | + function terms_check() { |
|
111 | + if (isset($_POST['agreeCheck'])) { |
|
112 | + return true; |
|
113 | + } |
|
114 | + $this->form_validation->set_message('terms_check', 'THIS IS SOOOOO REQUIRED, DUDE!'); |
|
115 | + return false; |
|
116 | + } |
|
117 | + |
|
118 | + function signup_save($id = "") { |
|
119 | + if (empty($_POST)) { |
|
120 | + redirect(base_url()."signup/"); |
|
121 | + } else { |
|
122 | + $post_values = $this->input->post(); |
|
123 | + $userCaptcha = $this->input->post('userCaptcha'); |
|
124 | + $cnt_result = $this->db_model->countQuery("*", 'accounts', array('email' => $post_values['email'])); |
|
125 | + |
|
126 | + if ($userCaptcha != $this->session->userdata('captchaWord') || ! filter_var($this->input->post('email'), FILTER_VALIDATE_EMAIL) || $cnt_result > 0) { |
|
127 | + if ( ! filter_var($this->input->post('email'), FILTER_VALIDATE_EMAIL)) { |
|
128 | + $data['error']['email'] = "<div style='color: red;'> Please enter proper email </div>"; |
|
129 | + } |
|
130 | + if ($userCaptcha != $this->session->userdata('captchaWord')) { |
|
131 | + $data['error']['userCaptcha'] = "<div style='color: red;'>Please enter valid Captcha code</div>"; |
|
132 | + } |
|
133 | + if ($cnt_result > 0) { |
|
134 | + $data['error']['email'] = "<div style='color: red;'>Email Address already exists</div>"; |
|
135 | + } |
|
136 | + $random_number = substr(number_format(time() * rand(), 0, '', ''), 0, 6); |
|
137 | + $vals = array( |
|
138 | + 'word' => $random_number, |
|
139 | + 'img_path' => getcwd().'/assets/captcha/', |
|
140 | + 'img_url' => base_url().'assets/captcha/', |
|
141 | + //'font_path' => './fonts/impact.ttf', |
|
142 | + 'img_width' => '243', |
|
143 | + 'img_height' => '50', |
|
144 | + 'expiration' => '3600' |
|
145 | + ); |
|
146 | + //echo "<pre>"; print_r($_POST); exit; |
|
147 | + if (isset($_POST['key_unique']) && $_POST['key_unique'] == "admin") { |
|
148 | + $data['key_unique'] = $_POST['key_unique']; |
|
149 | + } |
|
150 | 150 | |
151 | 151 | $accountinfo = (array)$this->db->get_where('accounts', array('type'=>-1))->first_row(); |
152 | 152 | $data['timezone_id'] = ( ! $accountinfo['timezone_id']) ? 1 : $accountinfo['timezone_id']; |
153 | 153 | $data['currency_id'] = ( ! $accountinfo['currency_id']) ? 1 : $accountinfo['currency_id']; |
154 | 154 | $data['country_id'] = ( ! $accountinfo['country_id']) ? 1 : $accountinfo['country_id']; |
155 | 155 | |
156 | - $data['timezone_id'] = ( ! $data['timezone_id']) ? 1 : $data['timezone_id']; |
|
157 | - $data['currency_id'] = ( ! $data['currency_id']) ? 1 : $data['currency_id']; |
|
158 | - $data['country_id'] = ( ! $data['country_id']) ? 1 : $data['country_id']; |
|
156 | + $data['timezone_id'] = ( ! $data['timezone_id']) ? 1 : $data['timezone_id']; |
|
157 | + $data['currency_id'] = ( ! $data['currency_id']) ? 1 : $data['currency_id']; |
|
158 | + $data['country_id'] = ( ! $data['country_id']) ? 1 : $data['country_id']; |
|
159 | 159 | |
160 | - $data['value'] = $post_values; |
|
161 | - $data['captcha'] = create_captcha($vals); |
|
160 | + $data['value'] = $post_values; |
|
161 | + $data['captcha'] = create_captcha($vals); |
|
162 | 162 | |
163 | - $this->session->set_userdata('captchaWord', $data['captcha']['word']); |
|
164 | - $data['key_unique'] = $_POST['key_unique']; |
|
165 | - $this->load->view('view_signup', $data); |
|
166 | - } else { |
|
167 | - //AVTLATP |
|
168 | - $user_data = $this->input->post(); |
|
163 | + $this->session->set_userdata('captchaWord', $data['captcha']['word']); |
|
164 | + $data['key_unique'] = $_POST['key_unique']; |
|
165 | + $this->load->view('view_signup', $data); |
|
166 | + } else { |
|
167 | + //AVTLATP |
|
168 | + $user_data = $this->input->post(); |
|
169 | 169 | |
170 | - if ( ! isset($_POST['key_unique']) || ! isset($_POST['email'])) { |
|
171 | - redirect(base_url()."signup/"); |
|
172 | - } |
|
173 | - $reseller_id = 0; |
|
174 | - if (isset($_POST['key_unique']) && $_POST['key_unique'] != "admin") { |
|
175 | - $_POST['key_unique'] = $this->common->decode_params(trim($_POST['key_unique'])); |
|
176 | - $decoded_str = $this->common->decode($_POST['key_unique']); |
|
177 | - $_POST['key_unique'] = $decoded_str; |
|
178 | - $user_data['key_unique'] = $_POST['key_unique']; |
|
179 | - $reseller_id = $user_data['key_unique']; |
|
180 | - } |
|
181 | - //echo "<pre>"; print_r($_POST); exit; |
|
182 | - //AVTLATP |
|
183 | - //Data want to insert or update |
|
184 | - $user_data['status'] = "1"; |
|
185 | - $user_data['number'] = $this->common->find_uniq_rendno_customer(common_model::$global_config['system_config']['cardlength'], 'number', 'accounts'); |
|
186 | - |
|
187 | - $user_data['password'] = $this->common->encode($this->common->generate_password()); |
|
188 | - $user_data['pin'] = $this->common->generate_password(); |
|
189 | - $user_data['reseller_id'] = $reseller_id; |
|
190 | - $user_data['posttoexternal'] = "0"; |
|
191 | - |
|
192 | - unset($user_data['userCaptcha']); |
|
193 | - unset($user_data['action']); |
|
194 | - |
|
195 | - $system_config = common_model::$global_config['system_config']; |
|
196 | - $balance = $system_config["balance"]; |
|
197 | - |
|
198 | - /* $query = $this->db_model->getSelect("*", 'invoice_conf ', array('id' => $unique ,"deleted" => "0")); |
|
170 | + if ( ! isset($_POST['key_unique']) || ! isset($_POST['email'])) { |
|
171 | + redirect(base_url()."signup/"); |
|
172 | + } |
|
173 | + $reseller_id = 0; |
|
174 | + if (isset($_POST['key_unique']) && $_POST['key_unique'] != "admin") { |
|
175 | + $_POST['key_unique'] = $this->common->decode_params(trim($_POST['key_unique'])); |
|
176 | + $decoded_str = $this->common->decode($_POST['key_unique']); |
|
177 | + $_POST['key_unique'] = $decoded_str; |
|
178 | + $user_data['key_unique'] = $_POST['key_unique']; |
|
179 | + $reseller_id = $user_data['key_unique']; |
|
180 | + } |
|
181 | + //echo "<pre>"; print_r($_POST); exit; |
|
182 | + //AVTLATP |
|
183 | + //Data want to insert or update |
|
184 | + $user_data['status'] = "1"; |
|
185 | + $user_data['number'] = $this->common->find_uniq_rendno_customer(common_model::$global_config['system_config']['cardlength'], 'number', 'accounts'); |
|
186 | + |
|
187 | + $user_data['password'] = $this->common->encode($this->common->generate_password()); |
|
188 | + $user_data['pin'] = $this->common->generate_password(); |
|
189 | + $user_data['reseller_id'] = $reseller_id; |
|
190 | + $user_data['posttoexternal'] = "0"; |
|
191 | + |
|
192 | + unset($user_data['userCaptcha']); |
|
193 | + unset($user_data['action']); |
|
194 | + |
|
195 | + $system_config = common_model::$global_config['system_config']; |
|
196 | + $balance = $system_config["balance"]; |
|
197 | + |
|
198 | + /* $query = $this->db_model->getSelect("*", 'invoice_conf ', array('id' => $unique ,"deleted" => "0")); |
|
199 | 199 | $query = $query->result_array(); */ |
200 | 200 | |
201 | - $company_website = $system_config["company_website"]; |
|
202 | - $company_name = $system_config["company_name"]; |
|
201 | + $company_website = $system_config["company_website"]; |
|
202 | + $company_name = $system_config["company_name"]; |
|
203 | 203 | |
204 | - //echo $company_name; exit; |
|
205 | - $selection_rategroup_signup = $system_config["default_signup_rategroup"]; |
|
204 | + //echo $company_name; exit; |
|
205 | + $selection_rategroup_signup = $system_config["default_signup_rategroup"]; |
|
206 | 206 | |
207 | - if ($reseller_id != 0) { |
|
208 | - $result = $this->db_model->getSelect("*", "pricelists", array("reseller_id" => $reseller_id), "ASC"); |
|
209 | - $result_arr = $result->result_array(); |
|
210 | - $selection_rategroup_signup = $result_arr[0]['id']; |
|
211 | - $user_data['pricelist_id'] = (isset($selection_rategroup_signup) && $selection_rategroup_signup > 0) ? $selection_rategroup_signup : 0; |
|
212 | - } else { |
|
213 | - $pricelist_id = $this->common->get_field_name('id', 'pricelists', array('name' => $selection_rategroup_signup)); |
|
214 | - /* if($pricelis_id != "") |
|
207 | + if ($reseller_id != 0) { |
|
208 | + $result = $this->db_model->getSelect("*", "pricelists", array("reseller_id" => $reseller_id), "ASC"); |
|
209 | + $result_arr = $result->result_array(); |
|
210 | + $selection_rategroup_signup = $result_arr[0]['id']; |
|
211 | + $user_data['pricelist_id'] = (isset($selection_rategroup_signup) && $selection_rategroup_signup > 0) ? $selection_rategroup_signup : 0; |
|
212 | + } else { |
|
213 | + $pricelist_id = $this->common->get_field_name('id', 'pricelists', array('name' => $selection_rategroup_signup)); |
|
214 | + /* if($pricelis_id != "") |
|
215 | 215 | $user_data['pricelist_id'] = $pricelis_id; |
216 | 216 | else |
217 | 217 | $user_data['pricelist_id'] = 0; */ |
218 | - $user_data['pricelist_id'] = ($pricelist_id != "") ? $pricelist_id : 0; |
|
219 | - } |
|
220 | - $last_id = '0'; |
|
221 | - //Insert or Update record |
|
222 | - $signup_sipdevice_flag = $system_config['create_sipdevice']; |
|
223 | - $last_id = $this->signup_model->add_user($user_data); |
|
224 | - if ($last_id == "") { |
|
225 | - redirect(base_url()."signup/signup_inactive"); |
|
226 | - } |
|
227 | - if ($signup_sipdevice_flag == '0') { |
|
228 | - $query = $this->db_model->select("*", "sip_profiles", array('name' => "default"), "id", "ASC", '1', '0'); |
|
229 | - $sip_id = $query->result_array(); |
|
230 | - if ($reseller_id > 0) { |
|
218 | + $user_data['pricelist_id'] = ($pricelist_id != "") ? $pricelist_id : 0; |
|
219 | + } |
|
220 | + $last_id = '0'; |
|
221 | + //Insert or Update record |
|
222 | + $signup_sipdevice_flag = $system_config['create_sipdevice']; |
|
223 | + $last_id = $this->signup_model->add_user($user_data); |
|
224 | + if ($last_id == "") { |
|
225 | + redirect(base_url()."signup/signup_inactive"); |
|
226 | + } |
|
227 | + if ($signup_sipdevice_flag == '0') { |
|
228 | + $query = $this->db_model->select("*", "sip_profiles", array('name' => "default"), "id", "ASC", '1', '0'); |
|
229 | + $sip_id = $query->result_array(); |
|
230 | + if ($reseller_id > 0) { |
|
231 | 231 | $reseller_id = $reseller_id; |
232 | 232 | } else { |
233 | 233 | $reseller_id = '0'; |
234 | 234 | } |
235 | - $free_switch_array = array('fs_username' => $user_data['number'], |
|
236 | - 'fs_password' => $user_data['password'], |
|
237 | - 'context' => 'default', |
|
238 | - 'effective_caller_id_name' => $user_data['number'], |
|
239 | - 'effective_caller_id_number' => $user_data['number'], |
|
240 | - 'sip_profile_id' => $sip_id[0]['id'], |
|
241 | - 'reseller_id' => $reseller_id, |
|
242 | - 'pricelist_id' => $user_data['pricelist_id'], |
|
243 | - 'accountcode' => $last_id, |
|
244 | - 'status' => $user_data['status'], |
|
245 | - 'voicemail_enabled'=>true, |
|
246 | - 'voicemail_password'=>'', |
|
247 | - 'voicemail_mail_to'=>'', |
|
248 | - 'voicemail_attach_file'=>true, |
|
249 | - 'vm_keep_local_after_email'=>true, |
|
250 | - 'vm_send_all_message'=>true, |
|
251 | - ); |
|
252 | - $user_custom_array = array_merge($user_data, $free_switch_array); |
|
253 | - $user_custom_array['id'] = $last_id; |
|
254 | - $user_custom_array['email'] = $user_data['email']; |
|
235 | + $free_switch_array = array('fs_username' => $user_data['number'], |
|
236 | + 'fs_password' => $user_data['password'], |
|
237 | + 'context' => 'default', |
|
238 | + 'effective_caller_id_name' => $user_data['number'], |
|
239 | + 'effective_caller_id_number' => $user_data['number'], |
|
240 | + 'sip_profile_id' => $sip_id[0]['id'], |
|
241 | + 'reseller_id' => $reseller_id, |
|
242 | + 'pricelist_id' => $user_data['pricelist_id'], |
|
243 | + 'accountcode' => $last_id, |
|
244 | + 'status' => $user_data['status'], |
|
245 | + 'voicemail_enabled'=>true, |
|
246 | + 'voicemail_password'=>'', |
|
247 | + 'voicemail_mail_to'=>'', |
|
248 | + 'voicemail_attach_file'=>true, |
|
249 | + 'vm_keep_local_after_email'=>true, |
|
250 | + 'vm_send_all_message'=>true, |
|
251 | + ); |
|
252 | + $user_custom_array = array_merge($user_data, $free_switch_array); |
|
253 | + $user_custom_array['id'] = $last_id; |
|
254 | + $user_custom_array['email'] = $user_data['email']; |
|
255 | 255 | |
256 | - $this->load->model('freeswitch/freeswitch_model'); |
|
257 | - $this->freeswitch_model->add_freeswith($user_custom_array); |
|
258 | - } |
|
259 | - // echo "<pre>"; print_r ($user_data); exit; |
|
260 | - $activation = $this->encrypt->encode($user_data['number']); |
|
261 | - $message = base_url().'signup/signup_confirm?email='.urlencode($user_data['email'])."&key=".urlencode($activation); |
|
262 | - $user_data['confirm'] = $message; |
|
263 | - |
|
264 | - $this->send_mail($last_id, 'email_signup_confirmation', $user_data); |
|
265 | - redirect(base_url()."signup/signup_success"); |
|
266 | - } |
|
267 | - } |
|
268 | - } |
|
269 | - |
|
270 | - function signup_confirm() { |
|
271 | - if ( ! empty($_GET)) { |
|
272 | - |
|
273 | - $system_config = common_model::$global_config['system_config']; |
|
274 | - $balance = $system_config["balance"]; |
|
275 | - $accno = $this->encrypt->decode($_GET['key']); |
|
276 | - $email = $_GET['email']; |
|
277 | - $success = $this->signup_model->check_user($accno, $email, $balance); |
|
278 | - $query = $this->db_model->getSelect("*", "accounts", array('number' => $accno)); |
|
279 | - $data = $query->result_array(); |
|
280 | - $user_data = $data[0]; |
|
281 | - $user_data['accountid'] = $user_data['id']; |
|
282 | - $user_data['success'] = $success; |
|
283 | - $user_data['balance'] = $balance; |
|
284 | - $user_data['confirm'] = base_url(); |
|
285 | - $this->active($user_data, $success); |
|
286 | - } else { |
|
287 | - redirect(base_url()); |
|
288 | - } |
|
289 | - } |
|
290 | - |
|
291 | - function signup_success() { |
|
292 | - $this->load->view('view_signup_success'); |
|
293 | - } |
|
294 | - |
|
295 | - function signup_inactive() { |
|
296 | - $this->load->view('view_signup_inactive'); |
|
297 | - } |
|
298 | - |
|
299 | - function active($user_data, $success) { |
|
300 | - $data['user_data'] = $user_data; |
|
301 | - $data['user_data']['success'] = $success; |
|
302 | - |
|
303 | - if ($user_data['success']) { |
|
256 | + $this->load->model('freeswitch/freeswitch_model'); |
|
257 | + $this->freeswitch_model->add_freeswith($user_custom_array); |
|
258 | + } |
|
259 | + // echo "<pre>"; print_r ($user_data); exit; |
|
260 | + $activation = $this->encrypt->encode($user_data['number']); |
|
261 | + $message = base_url().'signup/signup_confirm?email='.urlencode($user_data['email'])."&key=".urlencode($activation); |
|
262 | + $user_data['confirm'] = $message; |
|
263 | + |
|
264 | + $this->send_mail($last_id, 'email_signup_confirmation', $user_data); |
|
265 | + redirect(base_url()."signup/signup_success"); |
|
266 | + } |
|
267 | + } |
|
268 | + } |
|
269 | + |
|
270 | + function signup_confirm() { |
|
271 | + if ( ! empty($_GET)) { |
|
272 | + |
|
273 | + $system_config = common_model::$global_config['system_config']; |
|
274 | + $balance = $system_config["balance"]; |
|
275 | + $accno = $this->encrypt->decode($_GET['key']); |
|
276 | + $email = $_GET['email']; |
|
277 | + $success = $this->signup_model->check_user($accno, $email, $balance); |
|
278 | + $query = $this->db_model->getSelect("*", "accounts", array('number' => $accno)); |
|
279 | + $data = $query->result_array(); |
|
280 | + $user_data = $data[0]; |
|
281 | + $user_data['accountid'] = $user_data['id']; |
|
282 | + $user_data['success'] = $success; |
|
283 | + $user_data['balance'] = $balance; |
|
284 | + $user_data['confirm'] = base_url(); |
|
285 | + $this->active($user_data, $success); |
|
286 | + } else { |
|
287 | + redirect(base_url()); |
|
288 | + } |
|
289 | + } |
|
290 | + |
|
291 | + function signup_success() { |
|
292 | + $this->load->view('view_signup_success'); |
|
293 | + } |
|
294 | + |
|
295 | + function signup_inactive() { |
|
296 | + $this->load->view('view_signup_inactive'); |
|
297 | + } |
|
298 | + |
|
299 | + function active($user_data, $success) { |
|
300 | + $data['user_data'] = $user_data; |
|
301 | + $data['user_data']['success'] = $success; |
|
302 | + |
|
303 | + if ($user_data['success']) { |
|
304 | 304 | $user_data['password'] = $this->common->decode($user_data['password']); |
305 | - $this->send_mail($user_data['id'], 'email_add_user', $user_data); |
|
306 | - } |
|
307 | - $this->load->view('view_signup_active', $data); |
|
308 | - } |
|
309 | - |
|
310 | - function forgotpassword() { |
|
311 | - $this->load->view('view_forgotpassword'); |
|
312 | - } |
|
313 | - |
|
314 | - function confirmpassword() { |
|
315 | - $email = $_POST['email']; |
|
316 | - unset($_POST['action']); |
|
317 | - $where = array('email' => $email); |
|
318 | - $this->db->where($where); |
|
319 | - $this->db->or_where('number', $email); |
|
320 | - $cnt_result = $this->db_model->countQuery("*", 'accounts', ""); |
|
321 | - if ( ! empty($email)) { |
|
322 | - $names = array('0', '1', '3'); |
|
323 | - $this->db->where_in('type', $names); |
|
324 | - $where_arr = array("email" => $email); |
|
325 | - $this->db->where($where_arr); |
|
305 | + $this->send_mail($user_data['id'], 'email_add_user', $user_data); |
|
306 | + } |
|
307 | + $this->load->view('view_signup_active', $data); |
|
308 | + } |
|
309 | + |
|
310 | + function forgotpassword() { |
|
311 | + $this->load->view('view_forgotpassword'); |
|
312 | + } |
|
313 | + |
|
314 | + function confirmpassword() { |
|
315 | + $email = $_POST['email']; |
|
316 | + unset($_POST['action']); |
|
317 | + $where = array('email' => $email); |
|
318 | + $this->db->where($where); |
|
319 | + $this->db->or_where('number', $email); |
|
320 | + $cnt_result = $this->db_model->countQuery("*", 'accounts', ""); |
|
321 | + if ( ! empty($email)) { |
|
322 | + $names = array('0', '1', '3'); |
|
323 | + $this->db->where_in('type', $names); |
|
324 | + $where_arr = array("email" => $email); |
|
325 | + $this->db->where($where_arr); |
|
326 | 326 | $this->db->or_where('number', $email); |
327 | - $acountdata = $this->db_model->getSelect("*", "accounts", ""); |
|
328 | - if ($acountdata->num_rows() > 0) { |
|
329 | - $user_data = $acountdata->result_array(); |
|
330 | - $user_data = $user_data[0]; |
|
331 | - if ($user_data['status'] > 0) { |
|
332 | - $data['error']['email'] = "<div id='error_mail' style='color:red; margin: 1% 22%; float: left;'>This account is not Active.</div>"; |
|
333 | - $this->load->view('view_forgotpassword', $data); |
|
334 | - exit; |
|
335 | - } |
|
336 | - } |
|
337 | - if ($acountdata->num_rows() == 0 && ! filter_var($email, FILTER_VALIDATE_EMAIL)) { |
|
338 | - if ( ! filter_var($email, FILTER_VALIDATE_EMAIL)) { |
|
339 | - $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left; width:100%;'>Please enter proper Username or Email.</div>"; |
|
340 | - |
|
341 | - $this->load->view('view_forgotpassword', $data); |
|
342 | - } else { |
|
343 | - $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left;width:100%;'>This Username or Email is not valid</div>"; |
|
344 | - |
|
345 | - $this->load->view('view_forgotpassword', $data); |
|
346 | - } |
|
347 | - } else if ($acountdata->num_rows() == 0) { |
|
348 | - $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left; width:100%;'>Please enter proper Username or Email.</div>"; |
|
349 | - $this->load->view('view_forgotpassword', $data); |
|
350 | - } else { |
|
351 | - $acountdata = $acountdata->result_array(); |
|
352 | - $user_data = $acountdata[0]; |
|
327 | + $acountdata = $this->db_model->getSelect("*", "accounts", ""); |
|
328 | + if ($acountdata->num_rows() > 0) { |
|
329 | + $user_data = $acountdata->result_array(); |
|
330 | + $user_data = $user_data[0]; |
|
331 | + if ($user_data['status'] > 0) { |
|
332 | + $data['error']['email'] = "<div id='error_mail' style='color:red; margin: 1% 22%; float: left;'>This account is not Active.</div>"; |
|
333 | + $this->load->view('view_forgotpassword', $data); |
|
334 | + exit; |
|
335 | + } |
|
336 | + } |
|
337 | + if ($acountdata->num_rows() == 0 && ! filter_var($email, FILTER_VALIDATE_EMAIL)) { |
|
338 | + if ( ! filter_var($email, FILTER_VALIDATE_EMAIL)) { |
|
339 | + $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left; width:100%;'>Please enter proper Username or Email.</div>"; |
|
340 | + |
|
341 | + $this->load->view('view_forgotpassword', $data); |
|
342 | + } else { |
|
343 | + $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left;width:100%;'>This Username or Email is not valid</div>"; |
|
344 | + |
|
345 | + $this->load->view('view_forgotpassword', $data); |
|
346 | + } |
|
347 | + } else if ($acountdata->num_rows() == 0) { |
|
348 | + $data['error']['email'] = "<div id='error_mail' style='color: red; margin: 2% 22%; float: left; width:100%;'>Please enter proper Username or Email.</div>"; |
|
349 | + $this->load->view('view_forgotpassword', $data); |
|
350 | + } else { |
|
351 | + $acountdata = $acountdata->result_array(); |
|
352 | + $user_data = $acountdata[0]; |
|
353 | 353 | |
354 | - $email = $this->encrypt->encode($user_data['email']); |
|
355 | - $activation = $this->encrypt->encode($user_data['number']); |
|
356 | - $message = base_url().'confirm_pass?email='.urlencode($email)."&key=".urlencode($activation); |
|
357 | - $user_data['confirm'] = $message; |
|
358 | - $where = array("email" => $user_data['email']); |
|
359 | - $data = array("pass_link_status" => 1); |
|
360 | - $this->db->where($where); |
|
361 | - $this->db->update('accounts', $data); |
|
362 | - $system_config = common_model::$global_config['system_config']; |
|
363 | - $balance = $system_config["balance"]; |
|
364 | - $this->send_mail($user_data['id'], 'email_forgot_confirmation', $user_data); |
|
365 | - $this->load->view('view_forgot_success'); |
|
366 | - } |
|
367 | - } else { |
|
368 | - redirect(base_url()); |
|
369 | - } |
|
370 | - } |
|
371 | - |
|
372 | - function confirm_pass() { |
|
373 | - $confirm_pass = $_GET; |
|
374 | - $accno = ''; |
|
375 | - $balance = ''; |
|
376 | - $email1 = $this->encrypt->decode($confirm_pass['email']); |
|
377 | - $success = $this->signup_model->check_user($accno, $email1, $balance); |
|
378 | - if ( ! empty($confirm_pass)) { |
|
379 | - $where_arr = array("email" => $email1, "status" => 0); |
|
380 | - $acountdata = $this->db_model->getSelect("*", "accounts", $where_arr); |
|
381 | - if ($acountdata->num_rows() > 0) { |
|
382 | - $acountdata = $acountdata->result_array(); |
|
383 | - $user_data = $acountdata[0]; |
|
384 | - $updateArr = array("pass_link_status" => 0); |
|
385 | - $this->db->where(array("email" => $email1)); |
|
386 | - $this->db->update("accounts", $updateArr); |
|
387 | - if ($user_data['pass_link_status'] == '0') { |
|
388 | - $user_data['success'] = $success; |
|
389 | - $data['user_data'] = $user_data; |
|
390 | - $this->active($user_data, $success); |
|
391 | - } else { |
|
392 | - $data['email'] = $_GET['email']; |
|
393 | - $this->load->view('view_confirmpassword', $data); |
|
394 | - } |
|
395 | - } |
|
396 | - } |
|
397 | - } |
|
398 | - |
|
399 | - function confirmpass() { |
|
400 | - $passwordconf = $_POST; |
|
401 | - $email1 = $this->encrypt->decode($passwordconf['email']); |
|
402 | - if ( ! empty($passwordconf)) { |
|
403 | - $acountdata = $this->db_model->getSelect("*", "accounts", array("email" => $email1)); |
|
404 | - //echo $this->db->last_query();exit; |
|
405 | - if ($acountdata->num_rows() > 0) { |
|
406 | - $acountdata = $acountdata->result_array(); |
|
407 | - $user_data = $acountdata[0]; |
|
408 | - } |
|
409 | - $user_data['password'] = $this->common->encode($passwordconf['password']); |
|
410 | - $updateArr = array("password" => $user_data['password']); |
|
411 | - $where_arr = array("email" => $email1, "status" => 0); |
|
412 | - $this->db->where($where_arr); |
|
413 | - $this->db->update("accounts", $updateArr); |
|
414 | - //$activation = $this->encrypt->encode($user_data['number']); |
|
415 | - $message = base_url(); |
|
416 | - $user_data['confirm'] = $message; |
|
417 | - $user_data['password'] = $passwordconf['password']; |
|
418 | - |
|
419 | - |
|
420 | - |
|
421 | - $system_config = common_model::$global_config['system_config']; |
|
422 | - $balance = $system_config["balance"]; |
|
423 | - |
|
424 | - $this->send_mail($user_data['id'], 'email_forgot_user', $user_data); |
|
425 | - |
|
426 | - $this->successpassword(); |
|
427 | - } |
|
428 | - } |
|
429 | - |
|
430 | - /** |
|
431 | - * @param string $temp_name |
|
432 | - */ |
|
433 | - function send_mail($account_id, $temp_name, $user_data) { |
|
354 | + $email = $this->encrypt->encode($user_data['email']); |
|
355 | + $activation = $this->encrypt->encode($user_data['number']); |
|
356 | + $message = base_url().'confirm_pass?email='.urlencode($email)."&key=".urlencode($activation); |
|
357 | + $user_data['confirm'] = $message; |
|
358 | + $where = array("email" => $user_data['email']); |
|
359 | + $data = array("pass_link_status" => 1); |
|
360 | + $this->db->where($where); |
|
361 | + $this->db->update('accounts', $data); |
|
362 | + $system_config = common_model::$global_config['system_config']; |
|
363 | + $balance = $system_config["balance"]; |
|
364 | + $this->send_mail($user_data['id'], 'email_forgot_confirmation', $user_data); |
|
365 | + $this->load->view('view_forgot_success'); |
|
366 | + } |
|
367 | + } else { |
|
368 | + redirect(base_url()); |
|
369 | + } |
|
370 | + } |
|
371 | + |
|
372 | + function confirm_pass() { |
|
373 | + $confirm_pass = $_GET; |
|
374 | + $accno = ''; |
|
375 | + $balance = ''; |
|
376 | + $email1 = $this->encrypt->decode($confirm_pass['email']); |
|
377 | + $success = $this->signup_model->check_user($accno, $email1, $balance); |
|
378 | + if ( ! empty($confirm_pass)) { |
|
379 | + $where_arr = array("email" => $email1, "status" => 0); |
|
380 | + $acountdata = $this->db_model->getSelect("*", "accounts", $where_arr); |
|
381 | + if ($acountdata->num_rows() > 0) { |
|
382 | + $acountdata = $acountdata->result_array(); |
|
383 | + $user_data = $acountdata[0]; |
|
384 | + $updateArr = array("pass_link_status" => 0); |
|
385 | + $this->db->where(array("email" => $email1)); |
|
386 | + $this->db->update("accounts", $updateArr); |
|
387 | + if ($user_data['pass_link_status'] == '0') { |
|
388 | + $user_data['success'] = $success; |
|
389 | + $data['user_data'] = $user_data; |
|
390 | + $this->active($user_data, $success); |
|
391 | + } else { |
|
392 | + $data['email'] = $_GET['email']; |
|
393 | + $this->load->view('view_confirmpassword', $data); |
|
394 | + } |
|
395 | + } |
|
396 | + } |
|
397 | + } |
|
398 | + |
|
399 | + function confirmpass() { |
|
400 | + $passwordconf = $_POST; |
|
401 | + $email1 = $this->encrypt->decode($passwordconf['email']); |
|
402 | + if ( ! empty($passwordconf)) { |
|
403 | + $acountdata = $this->db_model->getSelect("*", "accounts", array("email" => $email1)); |
|
404 | + //echo $this->db->last_query();exit; |
|
405 | + if ($acountdata->num_rows() > 0) { |
|
406 | + $acountdata = $acountdata->result_array(); |
|
407 | + $user_data = $acountdata[0]; |
|
408 | + } |
|
409 | + $user_data['password'] = $this->common->encode($passwordconf['password']); |
|
410 | + $updateArr = array("password" => $user_data['password']); |
|
411 | + $where_arr = array("email" => $email1, "status" => 0); |
|
412 | + $this->db->where($where_arr); |
|
413 | + $this->db->update("accounts", $updateArr); |
|
414 | + //$activation = $this->encrypt->encode($user_data['number']); |
|
415 | + $message = base_url(); |
|
416 | + $user_data['confirm'] = $message; |
|
417 | + $user_data['password'] = $passwordconf['password']; |
|
418 | + |
|
419 | + |
|
420 | + |
|
421 | + $system_config = common_model::$global_config['system_config']; |
|
422 | + $balance = $system_config["balance"]; |
|
423 | + |
|
424 | + $this->send_mail($user_data['id'], 'email_forgot_user', $user_data); |
|
425 | + |
|
426 | + $this->successpassword(); |
|
427 | + } |
|
428 | + } |
|
429 | + |
|
430 | + /** |
|
431 | + * @param string $temp_name |
|
432 | + */ |
|
433 | + function send_mail($account_id, $temp_name, $user_data) { |
|
434 | 434 | |
435 | 435 | |
436 | - $system_config = common_model::$global_config['system_config']; |
|
437 | - //$screen_path = getcwd()."/cron"; |
|
438 | - //$screen_filename = "Email_Broadcast_".strtotime('now'); |
|
439 | - //$command = "cd ".$screen_path." && /usr/bin/screen -d -m -S $screen_filename php cron.php BroadcastEmail"; |
|
440 | - //exec($command); |
|
436 | + $system_config = common_model::$global_config['system_config']; |
|
437 | + //$screen_path = getcwd()."/cron"; |
|
438 | + //$screen_filename = "Email_Broadcast_".strtotime('now'); |
|
439 | + //$command = "cd ".$screen_path." && /usr/bin/screen -d -m -S $screen_filename php cron.php BroadcastEmail"; |
|
440 | + //exec($command); |
|
441 | 441 | |
442 | 442 | |
443 | 443 | |
444 | 444 | |
445 | - $where = array('name' => $temp_name); |
|
446 | - $EmailTemplate = $this->db_model->getSelect("*", "default_templates", $where); |
|
447 | - $reseller_id = ($user_data['reseller_id'] > 0) ? $user_data['reseller_id'] : 1; |
|
448 | - $where = "accountid IN ('".$reseller_id."','1')"; |
|
449 | - $this->db->where($where); |
|
450 | - $this->db->select('*'); |
|
451 | - $this->db->order_by('accountid', 'desc'); |
|
452 | - $this->db->limit(1); |
|
453 | - $invoiceconf = $this->db->get('invoice_conf'); |
|
454 | - $invoiceconf = (array)$invoiceconf->first_row(); |
|
455 | - $company_email = $invoiceconf['emailaddress']; |
|
456 | - $company_website = $invoiceconf["website"]; |
|
457 | - $company_name = $invoiceconf["company_name"]; |
|
445 | + $where = array('name' => $temp_name); |
|
446 | + $EmailTemplate = $this->db_model->getSelect("*", "default_templates", $where); |
|
447 | + $reseller_id = ($user_data['reseller_id'] > 0) ? $user_data['reseller_id'] : 1; |
|
448 | + $where = "accountid IN ('".$reseller_id."','1')"; |
|
449 | + $this->db->where($where); |
|
450 | + $this->db->select('*'); |
|
451 | + $this->db->order_by('accountid', 'desc'); |
|
452 | + $this->db->limit(1); |
|
453 | + $invoiceconf = $this->db->get('invoice_conf'); |
|
454 | + $invoiceconf = (array)$invoiceconf->first_row(); |
|
455 | + $company_email = $invoiceconf['emailaddress']; |
|
456 | + $company_website = $invoiceconf["website"]; |
|
457 | + $company_name = $invoiceconf["company_name"]; |
|
458 | 458 | |
459 | - $TemplateData = array(); |
|
459 | + $TemplateData = array(); |
|
460 | 460 | |
461 | 461 | |
462 | - foreach ($EmailTemplate->result_array() as $value) { |
|
463 | - $TemplateData = $value; |
|
464 | - $TemplateData['subject'] = str_replace('#NAME#', $user_data['first_name']." ".$user_data['last_name'], $TemplateData['subject']); |
|
465 | - $TemplateData['template'] = str_replace('#NAME#', $user_data['first_name']." ".$user_data['last_name'], $TemplateData['template']); |
|
466 | - $TemplateData['template'] = str_replace('#NUMBER#', $user_data['number'], $TemplateData['template']); |
|
467 | - $TemplateData['template'] = str_replace('#PASSWORD#', $user_data['password'], $TemplateData['template']); |
|
468 | - $TemplateData['template'] = str_replace('#COMPANY_WEBSITE#', $company_website, $TemplateData['template']); |
|
469 | - $TemplateData['template'] = str_replace('#LINK#', $user_data['confirm'], $TemplateData['template']); |
|
470 | - $TemplateData['template'] = str_replace('#COMPANY_EMAIL#', $company_email, $TemplateData['template']); |
|
471 | - $TemplateData['template'] = str_replace('#COMPANY_NAME#', $company_name, $TemplateData['template']); |
|
472 | - } |
|
473 | - $email_array = array('accountid' => $account_id, |
|
474 | - 'subject' => $TemplateData['subject'], |
|
475 | - 'body' => $TemplateData['template'], |
|
476 | - 'from' => $invoiceconf['emailaddress'], |
|
477 | - 'to' => $user_data['email'], |
|
478 | - 'status' => "1", |
|
479 | - //'attachment'=> $Filenm, |
|
480 | - 'template' => ''); |
|
481 | - //echo "<pre>"; print_r($TemplateData); exit; |
|
482 | - $this->db->insert("mail_details", $email_array); |
|
483 | - return true; |
|
484 | - } |
|
485 | - |
|
486 | - function successpassword() { |
|
487 | - $this->load->view('view_successpassword'); |
|
488 | - } |
|
462 | + foreach ($EmailTemplate->result_array() as $value) { |
|
463 | + $TemplateData = $value; |
|
464 | + $TemplateData['subject'] = str_replace('#NAME#', $user_data['first_name']." ".$user_data['last_name'], $TemplateData['subject']); |
|
465 | + $TemplateData['template'] = str_replace('#NAME#', $user_data['first_name']." ".$user_data['last_name'], $TemplateData['template']); |
|
466 | + $TemplateData['template'] = str_replace('#NUMBER#', $user_data['number'], $TemplateData['template']); |
|
467 | + $TemplateData['template'] = str_replace('#PASSWORD#', $user_data['password'], $TemplateData['template']); |
|
468 | + $TemplateData['template'] = str_replace('#COMPANY_WEBSITE#', $company_website, $TemplateData['template']); |
|
469 | + $TemplateData['template'] = str_replace('#LINK#', $user_data['confirm'], $TemplateData['template']); |
|
470 | + $TemplateData['template'] = str_replace('#COMPANY_EMAIL#', $company_email, $TemplateData['template']); |
|
471 | + $TemplateData['template'] = str_replace('#COMPANY_NAME#', $company_name, $TemplateData['template']); |
|
472 | + } |
|
473 | + $email_array = array('accountid' => $account_id, |
|
474 | + 'subject' => $TemplateData['subject'], |
|
475 | + 'body' => $TemplateData['template'], |
|
476 | + 'from' => $invoiceconf['emailaddress'], |
|
477 | + 'to' => $user_data['email'], |
|
478 | + 'status' => "1", |
|
479 | + //'attachment'=> $Filenm, |
|
480 | + 'template' => ''); |
|
481 | + //echo "<pre>"; print_r($TemplateData); exit; |
|
482 | + $this->db->insert("mail_details", $email_array); |
|
483 | + return true; |
|
484 | + } |
|
485 | + |
|
486 | + function successpassword() { |
|
487 | + $this->load->view('view_successpassword'); |
|
488 | + } |
|
489 | 489 | |
490 | 490 | } |
491 | 491 | ?> |
@@ -39,9 +39,9 @@ |
||
39 | 39 | <div class="row"> |
40 | 40 | <div class="col-md-4 col-md-offset-4"> |
41 | 41 | <span class="login_error"> |
42 | - <?php if (isset($astpp_notification)){ ?> |
|
42 | + <?php if (isset($astpp_notification)) { ?> |
|
43 | 43 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
44 | - <?php }else{ |
|
44 | + <?php } else { |
|
45 | 45 | echo " "; |
46 | 46 | } ?> |
47 | 47 | </span> |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | <span class="login_error"> |
42 | 42 | <?php if (isset($astpp_notification)){ ?> |
43 | 43 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
44 | - <?php }else{ |
|
44 | + <?php } else{ |
|
45 | 45 | echo " "; |
46 | 46 | } ?> |
47 | 47 | </span> |
@@ -78,10 +78,18 @@ discard block |
||
78 | 78 | <div class="input-group col-md-12 margin-t-15 padding-r-32 padding-l-32"> |
79 | 79 | <span class="input-group-addon"><i class="fa fa-envelope"></i></span> |
80 | 80 | |
81 | - <input type="text" class="form-control" id="email" name="email" placeholder="User Name OR Email" value = "<?php if (isset($value['email'])) echo $value['email']; else ''; ?>" style="height:40px;"> |
|
81 | + <input type="text" class="form-control" id="email" name="email" placeholder="User Name OR Email" value = "<?php if (isset($value['email'])) { |
|
82 | + echo $value['email']; |
|
83 | +} else { |
|
84 | + ''; |
|
85 | +} |
|
86 | +?>" style="height:40px;"> |
|
82 | 87 | </div> |
83 | 88 | |
84 | - <?php if (isset($error['email'])) echo $error['email']; ?> |
|
89 | + <?php if (isset($error['email'])) { |
|
90 | + echo $error['email']; |
|
91 | +} |
|
92 | +?> |
|
85 | 93 | <div style="width: 97.67%; float: left;text-align: left; margin: 2% 22%;"> |
86 | 94 | <span id="e_name" style="color:red;"> </span> |
87 | 95 | </div> |
@@ -77,16 +77,32 @@ |
||
77 | 77 | <div class="col-md-12 margin-t-20 padding-r-32 padding-l-32"> |
78 | 78 | <label class="col-md-5 no-padding" style="text-align: left;">Password</label> |
79 | 79 | <div class="col-md-7 no-padding"> |
80 | -<input type="text" name="password" required value="<?php if (isset($value['password'])) echo $value['password']; else ''; ?>" id="password" size="15" maxlength="40" class="form-control" /> |
|
81 | -<div class='error-style col-md-12 no-padding' style='color:red; font-size: 13px;' id="une"><?php if (isset($error['password'])) echo $error['password']; ?></div> |
|
80 | +<input type="text" name="password" required value="<?php if (isset($value['password'])) { |
|
81 | + echo $value['password']; |
|
82 | +} else { |
|
83 | + ''; |
|
84 | +} |
|
85 | +?>" id="password" size="15" maxlength="40" class="form-control" /> |
|
86 | +<div class='error-style col-md-12 no-padding' style='color:red; font-size: 13px;' id="une"><?php if (isset($error['password'])) { |
|
87 | + echo $error['password']; |
|
88 | +} |
|
89 | +?></div> |
|
82 | 90 | </div> |
83 | 91 | </div> |
84 | 92 | |
85 | 93 | <div class="col-md-12 margin-t-10 padding-r-32 padding-l-32"> |
86 | 94 | <label class="col-md-5 no-padding" style="text-align: left;">Confirm Password</label> |
87 | 95 | <div class="col-md-7 no-padding"> |
88 | -<input type="text" name="confirmpassword" required value="<?php if (isset($value['confirm_password'])) echo $value['confirm_password']; else ''; ?>" id="confirm_password" size="15" maxlength="40" class="form-control" /> |
|
89 | -<div class='error-style col-md-12' style='color:red; font-size: 13px;' id="conpas"><?php if (isset($error['confirm_password'])) echo $error['confirm_password']; ?></div> |
|
96 | +<input type="text" name="confirmpassword" required value="<?php if (isset($value['confirm_password'])) { |
|
97 | + echo $value['confirm_password']; |
|
98 | +} else { |
|
99 | + ''; |
|
100 | +} |
|
101 | +?>" id="confirm_password" size="15" maxlength="40" class="form-control" /> |
|
102 | +<div class='error-style col-md-12' style='color:red; font-size: 13px;' id="conpas"><?php if (isset($error['confirm_password'])) { |
|
103 | + echo $error['confirm_password']; |
|
104 | +} |
|
105 | +?></div> |
|
90 | 106 | </div> |
91 | 107 | </div> |
92 | 108 |
@@ -35,9 +35,9 @@ |
||
35 | 35 | <div class="row"> |
36 | 36 | |
37 | 37 | <div class="col-md-4 col-md-offset-4"> <span class="login_error"> |
38 | - <?php if (isset($astpp_notification)){ ?> |
|
38 | + <?php if (isset($astpp_notification)) { ?> |
|
39 | 39 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
40 | - <?php }else{ |
|
40 | + <?php } else { |
|
41 | 41 | echo " "; |
42 | 42 | } |
43 | 43 | $astpp_err_msg = $this->session->flashdata('astpp_signupmsg'); |
@@ -38,7 +38,7 @@ |
||
38 | 38 | <div class="col-md-4 col-md-offset-4"> <span class="login_error"> |
39 | 39 | <?php if (isset($astpp_notification)){ ?> |
40 | 40 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
41 | - <?php }else{ |
|
41 | + <?php } else{ |
|
42 | 42 | echo " "; |
43 | 43 | } ?> |
44 | 44 | </span></div> <br/> |
@@ -95,9 +95,9 @@ |
||
95 | 95 | <div class="row"> |
96 | 96 | <div class="col-md-4 col-md-offset-4"> |
97 | 97 | <span class="login_error"> |
98 | - <?php if (isset($astpp_notification)){ ?> |
|
98 | + <?php if (isset($astpp_notification)) { ?> |
|
99 | 99 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
100 | - <?php }else{ |
|
100 | + <?php } else { |
|
101 | 101 | echo " "; |
102 | 102 | } ?> |
103 | 103 | </span> |
@@ -97,7 +97,7 @@ |
||
97 | 97 | <span class="login_error"> |
98 | 98 | <?php if (isset($astpp_notification)){ ?> |
99 | 99 | Login unsuccessful. Please make sure you entered the correct username and password, and that your account is active. |
100 | - <?php }else{ |
|
100 | + <?php } else{ |
|
101 | 101 | echo " "; |
102 | 102 | } ?> |
103 | 103 | </span> |