Completed
Push — v3.0 ( 5d2162...e26911 )
by Samir
41:58 queued 20:28
created
application/modules/refill_coupon/views/view_refill_coupon_details.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,10 +49,10 @@
 block discarded – undo
49 49
           <th>Cost(CAD)</th>
50 50
         </tr>
51 51
         <?php foreach($cdrs as $cdr){
52
-	    $debit= '';
53
-	    $debit =($cdr['debit']/10000);
54
-	    $debit=$debit+0;
55
-        ?>
52
+		$debit= '';
53
+		$debit =($cdr['debit']/10000);
54
+		$debit=$debit+0;
55
+		?>
56 56
         <tr>
57 57
           <td><?=$cdr['destination']?></td>
58 58
           <td><?=$cdr['disposition']?></td>
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
   }
21 21
   </style> 
22 22
 <div class="portlet ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
23
-  <div class="portlet-header ui-widget-header"><?= $page_title;?><span class="ui-icon ui-icon-circle-arrow-s"></span></div>
23
+  <div class="portlet-header ui-widget-header"><?= $page_title; ?><span class="ui-icon ui-icon-circle-arrow-s"></span></div>
24 24
   <div class="portlet-content">
25 25
       <table class="details_table" style="width:700px;">        
26 26
         <tr>      
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
            <th>Expiry Date</th><td><?=$refill_coupon_details['expiry_date']?></td>      
35 35
            <th>Callingcard</th><td><?=$refill_coupon_details['callingcard']?></td>      
36 36
         </tr>      
37
-            <th>Status</th><td><?php if($refill_coupon_details['status'] == 0){ echo "Inactive";} elseif($refill_coupon_details['status'] == 1){ echo "Active"; } elseif($refill_coupon_details['status'] == 2){ echo "Inuse"; }else{ echo "Expired";}?></td>      
37
+            <th>Status</th><td><?php if ($refill_coupon_details['status'] == 0) { echo "Inactive"; } elseif ($refill_coupon_details['status'] == 1) { echo "Active"; } elseif ($refill_coupon_details['status'] == 2) { echo "Inuse"; } else { echo "Expired"; }?></td>      
38 38
         </tr>     
39 39
         </table>
40 40
         
41
-        <?php if(isset($cdrs) && is_array($cdrs)){?>
41
+        <?php if (isset($cdrs) && is_array($cdrs)) {?>
42 42
         <table class="details_table" style="width:700px;">        
43 43
         <tr>      
44 44
           <th>Destination</th>
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
           <th>Length in Seconds</th>
49 49
           <th>Cost(CAD)</th>
50 50
         </tr>
51
-        <?php foreach($cdrs as $cdr){
52
-	    $debit= '';
53
-	    $debit =($cdr['debit']/10000);
54
-	    $debit=$debit+0;
51
+        <?php foreach ($cdrs as $cdr) {
52
+	    $debit = '';
53
+	    $debit = ($cdr['debit'] / 10000);
54
+	    $debit = $debit + 0;
55 55
         ?>
56 56
         <tr>
57 57
           <td><?=$cdr['destination']?></td>
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
            <th>Expiry Date</th><td><?=$refill_coupon_details['expiry_date']?></td>      
35 35
            <th>Callingcard</th><td><?=$refill_coupon_details['callingcard']?></td>      
36 36
         </tr>      
37
-            <th>Status</th><td><?php if($refill_coupon_details['status'] == 0){ echo "Inactive";} elseif($refill_coupon_details['status'] == 1){ echo "Active"; } elseif($refill_coupon_details['status'] == 2){ echo "Inuse"; }else{ echo "Expired";}?></td>      
37
+            <th>Status</th><td><?php if($refill_coupon_details['status'] == 0){ echo "Inactive";} elseif($refill_coupon_details['status'] == 1){ echo "Active"; } elseif($refill_coupon_details['status'] == 2){ echo "Inuse"; } else{ echo "Expired";}?></td>      
38 38
         </tr>     
39 39
         </table>
40 40
         
Please login to merge, or discard this patch.
astpp/application/modules/refill_coupon/models/refill_coupon_model.php 3 patches
Indentation   +70 added lines, -70 removed lines patch added patch discarded remove patch
@@ -24,48 +24,48 @@  discard block
 block discarded – undo
24 24
 
25 25
 class Refill_coupon_model extends CI_Model {
26 26
 
27
-    function refill_coupon_model() {
28
-        parent::__construct();
29
-    }
30
-    function get_refill_coupon_list($flag,$start = 0, $limit = 0,$export=false){
31
-        $this->db_model->build_search('refill_coupon_list_search');
32
-        $accountinfo=$this->session->userdata('accountinfo');
33
-        $reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : 0;
34
-        $where=array('reseller_id'=>$reseller_id);
35
-        if ($flag) {
36
-	    if($export)
37
-	      $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC",'','');
38
-	    else
39
-	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
40
-        } else {
41
-            $query = $this->db_model->countQuery("*", "refill_coupon",$where);
42
-        }
43
-        return $query;
44
-    }
45
-    function get_customer_refill_coupon_list($flag,$start = 0, $limit = 0,$accountid){
46
-        $this->db_model->build_search('refill_coupon_list_search');
47
-        $accountinfo=$this->session->userdata('accountinfo');
48
-        $reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : ($accountinfo['type']== 0 ? $accountinfo['reseller_id']: 0 );
49
-        $where=array('reseller_id'=>$reseller_id,"account_id"=>$accountid);
50
-        if ($flag) {
51
-	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
52
-        } else {
53
-            $query = $this->db_model->countQuery("*", "refill_coupon",$where);
54
-        }
55
-        return $query;
56
-    }
57
-    function add_refill_coupon($add_array){
58
-      $count = $add_array['count'];
59
-        unset($add_array['action']);
60
-        unset($add_array['count']);
61
-        $prefix=$add_array['prefix'];
62
-        unset($add_array['prefix']);
63
-    	$accountinfo=$this->session->userdata('accountinfo');
64
-    	$reseller_id=$accountinfo['type']==1 ? $accountinfo['id']:0;
65
-    	$insert_arr=array();
66
-    	$account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
67
-    	$length=strlen($prefix);
68
-        if($length !=0){
27
+	function refill_coupon_model() {
28
+		parent::__construct();
29
+	}
30
+	function get_refill_coupon_list($flag,$start = 0, $limit = 0,$export=false){
31
+		$this->db_model->build_search('refill_coupon_list_search');
32
+		$accountinfo=$this->session->userdata('accountinfo');
33
+		$reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : 0;
34
+		$where=array('reseller_id'=>$reseller_id);
35
+		if ($flag) {
36
+		if($export)
37
+		  $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC",'','');
38
+		else
39
+		$query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
40
+		} else {
41
+			$query = $this->db_model->countQuery("*", "refill_coupon",$where);
42
+		}
43
+		return $query;
44
+	}
45
+	function get_customer_refill_coupon_list($flag,$start = 0, $limit = 0,$accountid){
46
+		$this->db_model->build_search('refill_coupon_list_search');
47
+		$accountinfo=$this->session->userdata('accountinfo');
48
+		$reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : ($accountinfo['type']== 0 ? $accountinfo['reseller_id']: 0 );
49
+		$where=array('reseller_id'=>$reseller_id,"account_id"=>$accountid);
50
+		if ($flag) {
51
+		$query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
52
+		} else {
53
+			$query = $this->db_model->countQuery("*", "refill_coupon",$where);
54
+		}
55
+		return $query;
56
+	}
57
+	function add_refill_coupon($add_array){
58
+	  $count = $add_array['count'];
59
+		unset($add_array['action']);
60
+		unset($add_array['count']);
61
+		$prefix=$add_array['prefix'];
62
+		unset($add_array['prefix']);
63
+		$accountinfo=$this->session->userdata('accountinfo');
64
+		$reseller_id=$accountinfo['type']==1 ? $accountinfo['id']:0;
65
+		$insert_arr=array();
66
+		$account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
67
+		$length=strlen($prefix);
68
+		if($length !=0){
69 69
 	  $number_length=$account_length-$length;
70 70
 	}
71 71
 	else{
@@ -74,34 +74,34 @@  discard block
 block discarded – undo
74 74
 	$add_array['amount'] = $this->common_model->add_calculate_currency($add_array['amount'], '', '', false, false);
75 75
 	$number=$this->common->find_uniq_rendno_accno($number_length, 'number', 'refill_coupon',$prefix,$count);
76 76
 	$date=gmdate('Y-m-d H:i:s');
77
-        for ($i = 0; $i < $count; $i++) {
78
-            $add_array['number'] = trim($number[$i]);
79
-	    $add_array['currency_id']=$accountinfo['currency_id'];
80
-	    $add_array['reseller_id']=$reseller_id;
81
-	    $add_array['creation_date']=$date;
82
-	    $insert_arr[$i]=$add_array;
83
-        }
84
-        $this->db->insert_batch("refill_coupon",$insert_arr);
85
-        return true;
86
-    }
87
-    function remove_refill_coupon($id){
77
+		for ($i = 0; $i < $count; $i++) {
78
+			$add_array['number'] = trim($number[$i]);
79
+		$add_array['currency_id']=$accountinfo['currency_id'];
80
+		$add_array['reseller_id']=$reseller_id;
81
+		$add_array['creation_date']=$date;
82
+		$insert_arr[$i]=$add_array;
83
+		}
84
+		$this->db->insert_batch("refill_coupon",$insert_arr);
85
+		return true;
86
+	}
87
+	function remove_refill_coupon($id){
88 88
 		$this->db->where("id", $id);
89
-        $this->db->delete("refill_coupon");
90
-        return true;
91
-    }
92
-    function get_refill_coupon_details($id){
93
-       $this->db->where("id", $id);
94
-       $result=$this->db->get('refill_coupon');
95
-       return $result;
96
-    }
97
-    function refill_coupon_count($add_array){
98
-        $account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
99
-        $this->db->where("length(number)",$account_length);
100
-        $this->db->like('number',$add_array['prefix'],'after');
101
-        $this->db->select("count(id) as count");
102
-        $this->db->from('refill_coupon');
103
-        $result=$this->db->get();
104
-        $result=$result->result_array();
89
+		$this->db->delete("refill_coupon");
90
+		return true;
91
+	}
92
+	function get_refill_coupon_details($id){
93
+	   $this->db->where("id", $id);
94
+	   $result=$this->db->get('refill_coupon');
95
+	   return $result;
96
+	}
97
+	function refill_coupon_count($add_array){
98
+		$account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
99
+		$this->db->where("length(number)",$account_length);
100
+		$this->db->like('number',$add_array['prefix'],'after');
101
+		$this->db->select("count(id) as count");
102
+		$this->db->from('refill_coupon');
103
+		$result=$this->db->get();
104
+		$result=$result->result_array();
105 105
 	return $result;
106
-    }
106
+	}
107 107
 }
Please login to merge, or discard this patch.
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -27,81 +27,81 @@
 block discarded – undo
27 27
     function refill_coupon_model() {
28 28
         parent::__construct();
29 29
     }
30
-    function get_refill_coupon_list($flag,$start = 0, $limit = 0,$export=false){
30
+    function get_refill_coupon_list($flag, $start = 0, $limit = 0, $export = false) {
31 31
         $this->db_model->build_search('refill_coupon_list_search');
32
-        $accountinfo=$this->session->userdata('accountinfo');
33
-        $reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : 0;
34
-        $where=array('reseller_id'=>$reseller_id);
32
+        $accountinfo = $this->session->userdata('accountinfo');
33
+        $reseller_id = $accountinfo['type'] == 1 ? $accountinfo['id'] : 0;
34
+        $where = array('reseller_id'=>$reseller_id);
35 35
         if ($flag) {
36
-	    if($export)
37
-	      $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC",'','');
36
+	    if ($export)
37
+	      $query = $this->db_model->select("*", "refill_coupon", $where, "id", "ASC", '', '');
38 38
 	    else
39
-	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
39
+	    $query = $this->db_model->select("*", "refill_coupon", $where, "id", "ASC", $limit, $start);
40 40
         } else {
41
-            $query = $this->db_model->countQuery("*", "refill_coupon",$where);
41
+            $query = $this->db_model->countQuery("*", "refill_coupon", $where);
42 42
         }
43 43
         return $query;
44 44
     }
45
-    function get_customer_refill_coupon_list($flag,$start = 0, $limit = 0,$accountid){
45
+    function get_customer_refill_coupon_list($flag, $start = 0, $limit = 0, $accountid) {
46 46
         $this->db_model->build_search('refill_coupon_list_search');
47
-        $accountinfo=$this->session->userdata('accountinfo');
48
-        $reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : ($accountinfo['type']== 0 ? $accountinfo['reseller_id']: 0 );
49
-        $where=array('reseller_id'=>$reseller_id,"account_id"=>$accountid);
47
+        $accountinfo = $this->session->userdata('accountinfo');
48
+        $reseller_id = $accountinfo['type'] == 1 ? $accountinfo['id'] : ($accountinfo['type'] == 0 ? $accountinfo['reseller_id'] : 0);
49
+        $where = array('reseller_id'=>$reseller_id, "account_id"=>$accountid);
50 50
         if ($flag) {
51
-	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
51
+	    $query = $this->db_model->select("*", "refill_coupon", $where, "id", "ASC", $limit, $start);
52 52
         } else {
53
-            $query = $this->db_model->countQuery("*", "refill_coupon",$where);
53
+            $query = $this->db_model->countQuery("*", "refill_coupon", $where);
54 54
         }
55 55
         return $query;
56 56
     }
57
-    function add_refill_coupon($add_array){
57
+    function add_refill_coupon($add_array) {
58 58
       $count = $add_array['count'];
59 59
         unset($add_array['action']);
60 60
         unset($add_array['count']);
61
-        $prefix=$add_array['prefix'];
61
+        $prefix = $add_array['prefix'];
62 62
         unset($add_array['prefix']);
63
-    	$accountinfo=$this->session->userdata('accountinfo');
64
-    	$reseller_id=$accountinfo['type']==1 ? $accountinfo['id']:0;
65
-    	$insert_arr=array();
66
-    	$account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
67
-    	$length=strlen($prefix);
68
-        if($length !=0){
69
-	  $number_length=$account_length-$length;
63
+    	$accountinfo = $this->session->userdata('accountinfo');
64
+    	$reseller_id = $accountinfo['type'] == 1 ? $accountinfo['id'] : 0;
65
+    	$insert_arr = array();
66
+    	$account_length = Common_model::$global_config['system_config']['refill_coupon_length'];
67
+    	$length = strlen($prefix);
68
+        if ($length != 0) {
69
+	  $number_length = $account_length - $length;
70 70
 	}
71
-	else{
72
-	  $number_length=$account_length;
71
+	else {
72
+	  $number_length = $account_length;
73 73
 	}
74 74
 	$add_array['amount'] = $this->common_model->add_calculate_currency($add_array['amount'], '', '', false, false);
75
-	$number=$this->common->find_uniq_rendno_accno($number_length, 'number', 'refill_coupon',$prefix,$count);
76
-	$date=gmdate('Y-m-d H:i:s');
75
+	$number = $this->common->find_uniq_rendno_accno($number_length, 'number', 'refill_coupon', $prefix, $count);
76
+	$date = gmdate('Y-m-d H:i:s');
77 77
         for ($i = 0; $i < $count; $i++) {
78 78
             $add_array['number'] = trim($number[$i]);
79
-	    $add_array['currency_id']=$accountinfo['currency_id'];
80
-	    $add_array['reseller_id']=$reseller_id;
81
-	    $add_array['creation_date']=$date;
82
-	    $insert_arr[$i]=$add_array;
79
+	    $add_array['currency_id'] = $accountinfo['currency_id'];
80
+	    $add_array['reseller_id'] = $reseller_id;
81
+	    $add_array['creation_date'] = $date;
82
+	    $insert_arr[$i] = $add_array;
83 83
         }
84
-        $this->db->insert_batch("refill_coupon",$insert_arr);
84
+        $this->db->insert_batch("refill_coupon", $insert_arr);
85 85
         return true;
86 86
     }
87
-    function remove_refill_coupon($id){
87
+    function remove_refill_coupon($id) {
88 88
 		$this->db->where("id", $id);
89 89
         $this->db->delete("refill_coupon");
90 90
         return true;
91 91
     }
92
-    function get_refill_coupon_details($id){
92
+    function get_refill_coupon_details($id) {
93 93
        $this->db->where("id", $id);
94
-       $result=$this->db->get('refill_coupon');
94
+       $result = $this->db->get('refill_coupon');
95 95
        return $result;
96 96
     }
97
-    function refill_coupon_count($add_array){
98
-        $account_length=Common_model::$global_config['system_config']['refill_coupon_length'];
99
-        $this->db->where("length(number)",$account_length);
100
-        $this->db->like('number',$add_array['prefix'],'after');
97
+    function refill_coupon_count($add_array) {
98
+        $account_length = Common_model::$global_config['system_config']['refill_coupon_length'];
99
+        $this->db->where("length(number)", $account_length);
100
+        $this->db->like('number', $add_array['prefix'], 'after');
101 101
         $this->db->select("count(id) as count");
102 102
         $this->db->from('refill_coupon');
103
-        $result=$this->db->get();
104
-        $result=$result->result_array();
103
+        $result = $this->db->get();
104
+        $result = $result->result_array();
105 105
 	return $result;
106 106
     }
107 107
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,10 +33,11 @@  discard block
 block discarded – undo
33 33
         $reseller_id=$accountinfo['type']==1 ? $accountinfo['id'] : 0;
34 34
         $where=array('reseller_id'=>$reseller_id);
35 35
         if ($flag) {
36
-	    if($export)
37
-	      $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC",'','');
38
-	    else
39
-	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
36
+	    if($export) {
37
+	    	      $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC",'','');
38
+	    } else {
39
+	    	    $query = $this->db_model->select("*", "refill_coupon",$where, "id", "ASC", $limit, $start);
40
+	    }
40 41
         } else {
41 42
             $query = $this->db_model->countQuery("*", "refill_coupon",$where);
42 43
         }
@@ -67,8 +68,7 @@  discard block
 block discarded – undo
67 68
     	$length=strlen($prefix);
68 69
         if($length !=0){
69 70
 	  $number_length=$account_length-$length;
70
-	}
71
-	else{
71
+	} else{
72 72
 	  $number_length=$account_length;
73 73
 	}
74 74
 	$add_array['amount'] = $this->common_model->add_calculate_currency($add_array['amount'], '', '', false, false);
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/controllers/freeswitch.php 3 patches
Indentation   +821 added lines, -821 removed lines patch added patch discarded remove patch
@@ -24,247 +24,247 @@  discard block
 block discarded – undo
24 24
 
25 25
 class Freeswitch extends MX_Controller {
26 26
 
27
-    function Freeswitch() {
28
-        parent::__construct();
27
+	function Freeswitch() {
28
+		parent::__construct();
29 29
 
30
-        $this->load->helper('template_inheritance');
30
+		$this->load->helper('template_inheritance');
31 31
 
32
-        $this->load->library('session');
33
-        $this->load->library("freeswitch_form");
34
-        $this->load->library('astpp/form');
35
-        $this->load->library('freeswitch_lib');
36
-        $this->load->model('freeswitch_model');
32
+		$this->load->library('session');
33
+		$this->load->library("freeswitch_form");
34
+		$this->load->library('astpp/form');
35
+		$this->load->library('freeswitch_lib');
36
+		$this->load->model('freeswitch_model');
37 37
 
38
-        if ($this->session->userdata('user_login') == FALSE)
39
-            redirect(base_url() . '/astpp/login');
40
-    }
38
+		if ($this->session->userdata('user_login') == FALSE)
39
+			redirect(base_url() . '/astpp/login');
40
+	}
41 41
 
42
-    function fssipdevices_add($type = "") {
43
-        $data['username'] = $this->session->userdata('user_name');
44
-         $account_data = $this->session->userdata("accountinfo");
45
-        $data['flag'] = 'create';
46
-        $data['page_title'] = 'Create SIP Device';
47
-       if($account_data['type'] == '-1'  || $account_data['type'] == '1')
48
-       {
49
-            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($type), '');
50
-            $this->load->view('view_freeswitch_add_edit', $data);
51
-        } else {
52
-            $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields(), '');
53
-            $this->load->view('view_freeswitch_customer_add_edit', $data);
54
-        }        
55
-    }
56
-    function customer_fssipdevices_add($accountid) {
57
-     $data['username'] = $this->session->userdata('user_name');
58
-     $account_data = $this->session->userdata("accountinfo");
59
-        $data['page_title'] = 'Create SIP Device';
60
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid),"");
61
-        if($account_data['type'] == '-1'  || $account_data['type'] == '1')
62
-        {
63
-            $this->load->view('view_freeswitch_add_edit', $data);
64
-        }else{
65
-            $this->load->view('view_freeswitch_customer_add_edit', $data);
66
-        }
67
-    }
42
+	function fssipdevices_add($type = "") {
43
+		$data['username'] = $this->session->userdata('user_name');
44
+		 $account_data = $this->session->userdata("accountinfo");
45
+		$data['flag'] = 'create';
46
+		$data['page_title'] = 'Create SIP Device';
47
+	   if($account_data['type'] == '-1'  || $account_data['type'] == '1')
48
+	   {
49
+			$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($type), '');
50
+			$this->load->view('view_freeswitch_add_edit', $data);
51
+		} else {
52
+			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields(), '');
53
+			$this->load->view('view_freeswitch_customer_add_edit', $data);
54
+		}        
55
+	}
56
+	function customer_fssipdevices_add($accountid) {
57
+	 $data['username'] = $this->session->userdata('user_name');
58
+	 $account_data = $this->session->userdata("accountinfo");
59
+		$data['page_title'] = 'Create SIP Device';
60
+		$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid),"");
61
+		if($account_data['type'] == '-1'  || $account_data['type'] == '1')
62
+		{
63
+			$this->load->view('view_freeswitch_add_edit', $data);
64
+		}else{
65
+			$this->load->view('view_freeswitch_customer_add_edit', $data);
66
+		}
67
+	}
68 68
 
69
-    function fssipdevices_edit($edit_id = '') {
70
-        $data['page_title'] = 'Edit SIP Device';
71
-        $account_data = $this->session->userdata("accountinfo");
72
-        $where = array('id' => $edit_id);
73
-        $account = $this->freeswitch_model->get_edited_data($edit_id);
74
-        if($account_data['type'] == '-1')
75
-        {
69
+	function fssipdevices_edit($edit_id = '') {
70
+		$data['page_title'] = 'Edit SIP Device';
71
+		$account_data = $this->session->userdata("accountinfo");
72
+		$where = array('id' => $edit_id);
73
+		$account = $this->freeswitch_model->get_edited_data($edit_id);
74
+		if($account_data['type'] == '-1')
75
+		{
76 76
 			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
77 77
 			$this->load->view('view_freeswitch_add_edit', $data);
78
-        }else{
79
-         $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
80
-        $this->load->view('view_freeswitch_customer_add_edit', $data);
81
-        }
82
-    }
78
+		}else{
79
+		 $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
80
+		$this->load->view('view_freeswitch_customer_add_edit', $data);
81
+		}
82
+	}
83 83
 
84
-    function customer_fssipdevices_edit($edit_id, $accountid) {
85
-     $data['username'] = $this->session->userdata('user_name');
86
-      $account_data = $this->session->userdata("accountinfo");
87
-        $data['page_title'] = 'Edit SIP device';
88
-        $where = array('id' => $edit_id);
89
-        $account = $this->freeswitch_model->get_edited_data($edit_id);
90
-          if($account_data['type'] == '-1' || $account_data['type'] == '1')
91
-        {
92
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
93
-        $this->load->view('view_freeswitch_add_edit', $data);
94
-        }else{
84
+	function customer_fssipdevices_edit($edit_id, $accountid) {
85
+	 $data['username'] = $this->session->userdata('user_name');
86
+	  $account_data = $this->session->userdata("accountinfo");
87
+		$data['page_title'] = 'Edit SIP device';
88
+		$where = array('id' => $edit_id);
89
+		$account = $this->freeswitch_model->get_edited_data($edit_id);
90
+		  if($account_data['type'] == '-1' || $account_data['type'] == '1')
91
+		{
92
+		$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
93
+		$this->load->view('view_freeswitch_add_edit', $data);
94
+		}else{
95 95
         
96
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
97
-        $this->load->view('view_freeswitch_customer_add_edit', $data);
98
-        }
99
-    }
96
+		$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
97
+		$this->load->view('view_freeswitch_customer_add_edit', $data);
98
+		}
99
+	}
100 100
     
101
-    function fsgateway_search() {
102
-        $ajax_search = $this->input->post('ajax_search', 0);
101
+	function fsgateway_search() {
102
+		$ajax_search = $this->input->post('ajax_search', 0);
103 103
         
104
-        if ($this->input->post('advance_search', TRUE) == 1) {
105
-            $this->session->set_userdata('advance_search', $this->input->post('advance_search'));
106
-            $action = $this->input->post();
107
-            unset($action['action']);
108
-            unset($action['advance_search']);
109
-            $this->session->set_userdata('fsgateway_list_search', $action);
110
-        }
111
-        if (@$ajax_search != 1) {
112
-            redirect(base_url() . 'freeswitch/fsgateway/');
113
-        }
114
-    }
115
-    function fssipprofile_search() {
116
-        $ajax_search = $this->input->post('ajax_search', 0);
104
+		if ($this->input->post('advance_search', TRUE) == 1) {
105
+			$this->session->set_userdata('advance_search', $this->input->post('advance_search'));
106
+			$action = $this->input->post();
107
+			unset($action['action']);
108
+			unset($action['advance_search']);
109
+			$this->session->set_userdata('fsgateway_list_search', $action);
110
+		}
111
+		if (@$ajax_search != 1) {
112
+			redirect(base_url() . 'freeswitch/fsgateway/');
113
+		}
114
+	}
115
+	function fssipprofile_search() {
116
+		$ajax_search = $this->input->post('ajax_search', 0);
117 117
         
118
-        if ($this->input->post('advance_search', TRUE) == 1) {
119
-            $this->session->set_userdata('advance_search', $this->input->post('advance_search'));
120
-            $action = $this->input->post();
121
-            unset($action['action']);
122
-            unset($action['advance_search']);
123
-            $this->session->set_userdata('fssipprofile_list_search', $action);
124
-        }
125
-        if (@$ajax_search != 1) {
126
-            redirect(base_url() . 'freeswitch/fssipprofile/');
127
-        }
128
-    }
129
-    function fssipdevices_clearsearchfilter() {
130
-        $this->session->set_userdata('advance_search', 0);
131
-        $this->session->set_userdata('account_search', "");
132
-    }
133
-    function fsgateway_clearsearchfilter() {
134
-        $this->session->set_userdata('advance_search', 0);
135
-        $this->session->set_userdata('account_search', "");
136
-    }
137
-    function fssipprofile_clearsearchfilter() {
138
-        $this->session->set_userdata('advance_search', 0);
139
-        $this->session->set_userdata('account_search', "");
140
-    }
141
-    function fssipdevices_save($user_flg = false) {
142
-        $add_array = $this->input->post();
143
-        if (!$user_flg) {
144
-            $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($add_array['id']), $add_array);
145
-        } else {
146
-            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']),  $add_array);
147
-        }
148
-        if ($add_array['id'] != '') {
149
-            $data['page_title'] = 'Freeswitch SIP Devices';
150
-            if ($this->form_validation->run() == FALSE) {
151
-                $data['validation_errors'] = validation_errors();
152
-                echo $data['validation_errors'];
153
-                exit;
154
-            } else {
155
-                $this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
156
-                echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
157
-                exit;
158
-            }
159
-        } else {
160
-            $data['page_title'] = 'Create Freeswitch SIP Devices';
161
-            if ($this->form_validation->run() == FALSE) {
162
-                $data['validation_errors'] = validation_errors();
163
-                echo $data['validation_errors'];
164
-                exit;
165
-            } else {
166
-                $this->freeswitch_model->add_freeswith($add_array);
167
-                echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
168
-                exit;
169
-            }
170
-        }
171
-    }
172
-    function customer_fssipdevices_save($user_flg = false) {
173
-        $add_array = $this->input->post();      
174
-        if (!$user_flg) {
175
-            $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields(), $add_array);
176
-        } else {
177
-            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
178
-        }
179
-        if ($add_array['id'] != '') {
180
-            $data['page_title'] = 'Edit Freeswitch SIP Devices';
181
-            if ($this->form_validation->run() == FALSE) {
182
-                $data['validation_errors'] = validation_errors();
183
-                echo $data['validation_errors'];
184
-                exit;
185
-            } else {
186
-                $this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
187
-                echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
188
-                exit;
189
-            }
190
-        } else {
191
-            $data['page_title'] = 'Create Freeswitch SIP Devices';
192
-            if ($this->form_validation->run() == FALSE) {
193
-                $data['validation_errors'] = validation_errors();
194
-                echo $data['validation_errors'];
195
-                exit;
196
-            } else {
197
-                $this->freeswitch_model->add_freeswith($add_array);
198
-                echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
199
-                exit;
200
-            }
201
-        }
202
-    }
203
-    function user_fssipdevices_save($user_flg = false) {
204
-        $add_array = $this->input->post();
205
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
206
-        if ($add_array['id'] != '') {
207
-            $data['page_title'] = 'Edit Freeswitch SIP Devices';
208
-            if ($this->form_validation->run() == FALSE) {
209
-                $data['validation_errors'] = validation_errors();
210
-                echo $data['validation_errors'];
211
-                exit;
212
-            } else {
213
-                $this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
214
-                echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
215
-                exit;
216
-            }
217
-        }else{
218
-            $data['page_title'] = 'Create Freeswitch SIP Devices';
219
-            if ($this->form_validation->run() == FALSE) {
220
-                $data['validation_errors'] = validation_errors();
221
-                echo $data['validation_errors'];
222
-                exit;
223
-            } else {
118
+		if ($this->input->post('advance_search', TRUE) == 1) {
119
+			$this->session->set_userdata('advance_search', $this->input->post('advance_search'));
120
+			$action = $this->input->post();
121
+			unset($action['action']);
122
+			unset($action['advance_search']);
123
+			$this->session->set_userdata('fssipprofile_list_search', $action);
124
+		}
125
+		if (@$ajax_search != 1) {
126
+			redirect(base_url() . 'freeswitch/fssipprofile/');
127
+		}
128
+	}
129
+	function fssipdevices_clearsearchfilter() {
130
+		$this->session->set_userdata('advance_search', 0);
131
+		$this->session->set_userdata('account_search', "");
132
+	}
133
+	function fsgateway_clearsearchfilter() {
134
+		$this->session->set_userdata('advance_search', 0);
135
+		$this->session->set_userdata('account_search', "");
136
+	}
137
+	function fssipprofile_clearsearchfilter() {
138
+		$this->session->set_userdata('advance_search', 0);
139
+		$this->session->set_userdata('account_search', "");
140
+	}
141
+	function fssipdevices_save($user_flg = false) {
142
+		$add_array = $this->input->post();
143
+		if (!$user_flg) {
144
+			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($add_array['id']), $add_array);
145
+		} else {
146
+			$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']),  $add_array);
147
+		}
148
+		if ($add_array['id'] != '') {
149
+			$data['page_title'] = 'Freeswitch SIP Devices';
150
+			if ($this->form_validation->run() == FALSE) {
151
+				$data['validation_errors'] = validation_errors();
152
+				echo $data['validation_errors'];
153
+				exit;
154
+			} else {
155
+				$this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
156
+				echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
157
+				exit;
158
+			}
159
+		} else {
160
+			$data['page_title'] = 'Create Freeswitch SIP Devices';
161
+			if ($this->form_validation->run() == FALSE) {
162
+				$data['validation_errors'] = validation_errors();
163
+				echo $data['validation_errors'];
164
+				exit;
165
+			} else {
166
+				$this->freeswitch_model->add_freeswith($add_array);
167
+				echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
168
+				exit;
169
+			}
170
+		}
171
+	}
172
+	function customer_fssipdevices_save($user_flg = false) {
173
+		$add_array = $this->input->post();      
174
+		if (!$user_flg) {
175
+			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields(), $add_array);
176
+		} else {
177
+			$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
178
+		}
179
+		if ($add_array['id'] != '') {
180
+			$data['page_title'] = 'Edit Freeswitch SIP Devices';
181
+			if ($this->form_validation->run() == FALSE) {
182
+				$data['validation_errors'] = validation_errors();
183
+				echo $data['validation_errors'];
184
+				exit;
185
+			} else {
186
+				$this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
187
+				echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
188
+				exit;
189
+			}
190
+		} else {
191
+			$data['page_title'] = 'Create Freeswitch SIP Devices';
192
+			if ($this->form_validation->run() == FALSE) {
193
+				$data['validation_errors'] = validation_errors();
194
+				echo $data['validation_errors'];
195
+				exit;
196
+			} else {
197
+				$this->freeswitch_model->add_freeswith($add_array);
198
+				echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
199
+				exit;
200
+			}
201
+		}
202
+	}
203
+	function user_fssipdevices_save($user_flg = false) {
204
+		$add_array = $this->input->post();
205
+		$data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
206
+		if ($add_array['id'] != '') {
207
+			$data['page_title'] = 'Edit Freeswitch SIP Devices';
208
+			if ($this->form_validation->run() == FALSE) {
209
+				$data['validation_errors'] = validation_errors();
210
+				echo $data['validation_errors'];
211
+				exit;
212
+			} else {
213
+				$this->freeswitch_model->edit_freeswith($add_array, $add_array['id']);
214
+				echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
215
+				exit;
216
+			}
217
+		}else{
218
+			$data['page_title'] = 'Create Freeswitch SIP Devices';
219
+			if ($this->form_validation->run() == FALSE) {
220
+				$data['validation_errors'] = validation_errors();
221
+				echo $data['validation_errors'];
222
+				exit;
223
+			} else {
224 224
 		$sip_profile_id=$this->common->get_field_name('id','sip_profiles',array('name'=>'default'));
225
-                $this->freeswitch_model->add_freeswith($add_array);
226
-                echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
227
-                exit;
228
-            }
229
-        }
230
-    }
225
+				$this->freeswitch_model->add_freeswith($add_array);
226
+				echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
227
+				exit;
228
+			}
229
+		}
230
+	}
231 231
 
232
-    function fssipdevices_search() {
233
-        $ajax_search = $this->input->post('ajax_search', 0);
234
-        if ($this->input->post('advance_search', TRUE) == 1) {
235
-            $this->session->set_userdata('advance_search', $this->input->post('advance_search'));
236
-            $action = $this->input->post();
237
-            unset($action['action']);
238
-            unset($action['advance_search']);
239
-            $this->session->set_userdata('fssipdevices_list_search', $action);
240
-        }
241
-        if (@$ajax_search != 1) {
242
-            redirect(base_url() . 'freeswitch/fssipdevices/');
243
-        }
244
-    }
232
+	function fssipdevices_search() {
233
+		$ajax_search = $this->input->post('ajax_search', 0);
234
+		if ($this->input->post('advance_search', TRUE) == 1) {
235
+			$this->session->set_userdata('advance_search', $this->input->post('advance_search'));
236
+			$action = $this->input->post();
237
+			unset($action['action']);
238
+			unset($action['advance_search']);
239
+			$this->session->set_userdata('fssipdevices_list_search', $action);
240
+		}
241
+		if (@$ajax_search != 1) {
242
+			redirect(base_url() . 'freeswitch/fssipdevices/');
243
+		}
244
+	}
245 245
 
246 246
 
247
-    function fssipdevices() {
248
-        $data['page_title'] = 'SIP Devices';
249
-        $data['search_flag'] = true;
250
-        $this->session->set_userdata('advance_search', 0);
251
-        $data['grid_fields'] = $this->freeswitch_form->build_system_list_for_admin();
252
-        $data["grid_buttons"] = $this->freeswitch_form->build_grid_buttons();
253
-        $data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_sipdevice_search_form());
254
-        $this->load->view('view_freeswitch_sip_devices_list', $data);
255
-    }
247
+	function fssipdevices() {
248
+		$data['page_title'] = 'SIP Devices';
249
+		$data['search_flag'] = true;
250
+		$this->session->set_userdata('advance_search', 0);
251
+		$data['grid_fields'] = $this->freeswitch_form->build_system_list_for_admin();
252
+		$data["grid_buttons"] = $this->freeswitch_form->build_grid_buttons();
253
+		$data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_sipdevice_search_form());
254
+		$this->load->view('view_freeswitch_sip_devices_list', $data);
255
+	}
256 256
 
257 257
 /******
258 258
 ASTPP 3.0
259 259
 Admin side show voicemail details
260 260
 ******/
261
-    function fssipdevices_json() {
262
-        $json_data = array();
263
-        $count_all = $this->freeswitch_model->fs_retrieve_sip_user(false);
264
-        $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
265
-        $json_data = $paging_data["json_paging"];
266
-        $query = $this->freeswitch_model->fs_retrieve_sip_user(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
267
-        foreach ($query as $key => $value) {
261
+	function fssipdevices_json() {
262
+		$json_data = array();
263
+		$count_all = $this->freeswitch_model->fs_retrieve_sip_user(false);
264
+		$paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
265
+		$json_data = $paging_data["json_paging"];
266
+		$query = $this->freeswitch_model->fs_retrieve_sip_user(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
267
+		foreach ($query as $key => $value) {
268 268
 	$path_true = base_url().'/assets/images/true.png';
269 269
 	$path_false = base_url().'/assets/images/false.png';
270 270
 	if($value['voicemail_enabled'] == 'true'){
@@ -272,296 +272,296 @@  discard block
 block discarded – undo
272 272
 	}else{
273 273
 		$voicemail_enabled ='<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
274 274
 	}
275
-        $json_data['rows'][] = array('cell' => array(
276
-		    '<input type="checkbox" name="chkAll" id=' . $value['id'] . ' class="ace chkRefNos" onclick="clickchkbox(' . $value['id'] . ')" value=' . $value['id'] . '><lable class="lbl"></lable>',
277
-		    "<a href='/freeswitch/fssipdevices_edit/".$value['id']."' style='cursor:pointer;color:#005298;' rel='facebox_medium' title='username'>".$value['username']."</a>",
275
+		$json_data['rows'][] = array('cell' => array(
276
+			'<input type="checkbox" name="chkAll" id=' . $value['id'] . ' class="ace chkRefNos" onclick="clickchkbox(' . $value['id'] . ')" value=' . $value['id'] . '><lable class="lbl"></lable>',
277
+			"<a href='/freeswitch/fssipdevices_edit/".$value['id']."' style='cursor:pointer;color:#005298;' rel='facebox_medium' title='username'>".$value['username']."</a>",
278 278
 /**************************/
279
-                    $value['password'],
280
-                    $this->common->get_field_name('name', '`sip_profiles', array('id' => $value['sip_profile_id'])),
281
-                    $this->common->get_field_name_coma_new('first_name,last_name,number', 'accounts', array('0' => $value['accountid'])),
282
-                    $value['effective_caller_id_name'],
283
-                    $value['effective_caller_id_number'],
284
-                     $voicemail_enabled ,
285
-                     $this->common->get_status('status', 'sip_devices',$value),
286
-                    $this->common->convert_GMT_to('','',$value['creation_date']),
287
-                    $this->common->convert_GMT_to('','',$value['last_modified_date']),                
288
-                    $this->get_action_buttons_fssipdevices($value['id'])
289
-                    ));
290
-        }
291
-        echo json_encode($json_data);
292
-    }
293
-    function fssipdevices_delete_multiple() {
294
-        $ids = $this->input->post("selected_ids", true);
295
-        $where = "id IN ($ids)";
296
-        $this->db->where($where);
297
-        echo $this->db->delete("sip_devices");
298
-    }
279
+					$value['password'],
280
+					$this->common->get_field_name('name', '`sip_profiles', array('id' => $value['sip_profile_id'])),
281
+					$this->common->get_field_name_coma_new('first_name,last_name,number', 'accounts', array('0' => $value['accountid'])),
282
+					$value['effective_caller_id_name'],
283
+					$value['effective_caller_id_number'],
284
+					 $voicemail_enabled ,
285
+					 $this->common->get_status('status', 'sip_devices',$value),
286
+					$this->common->convert_GMT_to('','',$value['creation_date']),
287
+					$this->common->convert_GMT_to('','',$value['last_modified_date']),                
288
+					$this->get_action_buttons_fssipdevices($value['id'])
289
+					));
290
+		}
291
+		echo json_encode($json_data);
292
+	}
293
+	function fssipdevices_delete_multiple() {
294
+		$ids = $this->input->post("selected_ids", true);
295
+		$where = "id IN ($ids)";
296
+		$this->db->where($where);
297
+		echo $this->db->delete("sip_devices");
298
+	}
299 299
 
300
-    function user_fssipdevices_delete_multiple() {
301
-        $ids = $this->input->post("selected_ids", true);
302
-        $where = "id IN ($ids)";
303
-        $this->db->where($where);
304
-        $this->db->delete("sip_devices");
305
-        echo TRUE;
306
-    }
307
-    function customer_fssipdevices_delete_multiple(){
308
-        $ids = $this->input->post("selected_ids", true);
309
-        $where = "id IN ($ids)";
310
-        $this->db->where($where);
311
-        $this->db->delete("sip_devices");
312
-        echo TRUE;
313
-    }
300
+	function user_fssipdevices_delete_multiple() {
301
+		$ids = $this->input->post("selected_ids", true);
302
+		$where = "id IN ($ids)";
303
+		$this->db->where($where);
304
+		$this->db->delete("sip_devices");
305
+		echo TRUE;
306
+	}
307
+	function customer_fssipdevices_delete_multiple(){
308
+		$ids = $this->input->post("selected_ids", true);
309
+		$where = "id IN ($ids)";
310
+		$this->db->where($where);
311
+		$this->db->delete("sip_devices");
312
+		echo TRUE;
313
+	}
314 314
 
315 315
 /******
316 316
 ASTPP 3.0
317 317
 Customer side show voice mail detials
318 318
 ******/
319
-    function customer_fssipdevices_json($accountid,$entity_type='') {
320
-        $json_data = array();
321
-        $count_all = $this->freeswitch_model->get_sipdevices_list(false, $accountid,$entity_type);
322
-        $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
323
-        $json_data = $paging_data["json_paging"];
324
-        $devices_result = array();
325
-        $query = $this->freeswitch_model->get_sipdevices_list(true, $accountid,$entity_type, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
326
-        foreach ($query as $key => $value) {
319
+	function customer_fssipdevices_json($accountid,$entity_type='') {
320
+		$json_data = array();
321
+		$count_all = $this->freeswitch_model->get_sipdevices_list(false, $accountid,$entity_type);
322
+		$paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
323
+		$json_data = $paging_data["json_paging"];
324
+		$devices_result = array();
325
+		$query = $this->freeswitch_model->get_sipdevices_list(true, $accountid,$entity_type, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
326
+		foreach ($query as $key => $value) {
327 327
 	$path_true = base_url().'/assets/images/true.png';
328 328
 	$path_false = base_url().'/assets/images/false.png';
329 329
 	$voicemail_enabled = $value['voicemail_enabled'] == 'true'? '<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">' : '<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
330
-        $json_data['rows'][] = array('cell' => array(
331
-		    '<input type="checkbox" name="chkAll" id="'.$value['id'].'" class="ace chkRefNos" onclick="clickchkbox('.$value['id'].')" value=' .$value['id'].'><lable class="lbl"></lable>',
332
-                    $value['username'],
333
-                    $value['password'],
334
-                    $this->common->get_field_name('name', '`sip_profiles', array('id' => $value['sip_profile_id'])),
335
-                    $value['effective_caller_id_name'],
336
-                    $value['effective_caller_id_number'],
337
-                    $voicemail_enabled,
338
-                    $this->common->get_status('status', 'sip_devices',$value),
339
-                    $this->common->convert_GMT_to('','',$value['creation_date']),
340
-                    $this->common->convert_GMT_to('','',$value['last_modified_date']),
341
-                    $this->get_action_fssipdevices_buttons($value['id'], $value['accountid'],$entity_type)
342
-                    ));
343
-        }//exit;
344
-        echo json_encode($json_data);
345
-    }
330
+		$json_data['rows'][] = array('cell' => array(
331
+			'<input type="checkbox" name="chkAll" id="'.$value['id'].'" class="ace chkRefNos" onclick="clickchkbox('.$value['id'].')" value=' .$value['id'].'><lable class="lbl"></lable>',
332
+					$value['username'],
333
+					$value['password'],
334
+					$this->common->get_field_name('name', '`sip_profiles', array('id' => $value['sip_profile_id'])),
335
+					$value['effective_caller_id_name'],
336
+					$value['effective_caller_id_number'],
337
+					$voicemail_enabled,
338
+					$this->common->get_status('status', 'sip_devices',$value),
339
+					$this->common->convert_GMT_to('','',$value['creation_date']),
340
+					$this->common->convert_GMT_to('','',$value['last_modified_date']),
341
+					$this->get_action_fssipdevices_buttons($value['id'], $value['accountid'],$entity_type)
342
+					));
343
+		}//exit;
344
+		echo json_encode($json_data);
345
+	}
346 346
 /****************************/
347
-    function get_action_fssipdevices_buttons($id, $accountid,$entity_type='') {
348
-        $ret_url = '';
349
-        if ($this->session->userdata("logintype") == '0'||$this->session->userdata("logintype") == '3') {
350
-            $ret_url = '<a href="'. base_url() .'user/user_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
351
-            $ret_url .= '<a href="'. base_url() .'user/user_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
352
-        } else {
353
-            $ret_url = '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
354
-            $ret_url .= '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
355
-        }
356
-        return $ret_url;
357
-    }
347
+	function get_action_fssipdevices_buttons($id, $accountid,$entity_type='') {
348
+		$ret_url = '';
349
+		if ($this->session->userdata("logintype") == '0'||$this->session->userdata("logintype") == '3') {
350
+			$ret_url = '<a href="'. base_url() .'user/user_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
351
+			$ret_url .= '<a href="'. base_url() .'user/user_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
352
+		} else {
353
+			$ret_url = '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
354
+			$ret_url .= '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
355
+		}
356
+		return $ret_url;
357
+	}
358 358
 
359
-    function fssipdevices_delete($id) {
360
-        $this->freeswitch_model->delete_freeswith_devices($id);
361
-        $this->session->set_flashdata('astpp_notification', 'SIP Device Removed Successfully!');
362
-        redirect(base_url() . 'freeswitch/fssipdevices/');
363
-        exit;
364
-    }
359
+	function fssipdevices_delete($id) {
360
+		$this->freeswitch_model->delete_freeswith_devices($id);
361
+		$this->session->set_flashdata('astpp_notification', 'SIP Device Removed Successfully!');
362
+		redirect(base_url() . 'freeswitch/fssipdevices/');
363
+		exit;
364
+	}
365 365
 
366
-    function get_action_buttons_fssipdevices($id) {
366
+	function get_action_buttons_fssipdevices($id) {
367 367
 
368
-        $ret_url = '';
369
-        $ret_url = '<a href="'. base_url() .'freeswitch/fssipdevices_edit/' . $id . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
370
-        $ret_url .= '<a href="'. base_url() .'freeswitch/fssipdevices_delete/' . $id . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
371
-        return $ret_url;
372
-    }
368
+		$ret_url = '';
369
+		$ret_url = '<a href="'. base_url() .'freeswitch/fssipdevices_edit/' . $id . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
370
+		$ret_url .= '<a href="'. base_url() .'freeswitch/fssipdevices_delete/' . $id . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
371
+		return $ret_url;
372
+	}
373 373
 
374
-    function livecall_report() {
374
+	function livecall_report() {
375 375
 
376
-        $data['username'] = $this->session->userdata('user_name');
377
-        $data['page_title'] = 'Live Call Report';
378
-        $this->load->view('view_fs_livecall_report', $data);
379
-    }
376
+		$data['username'] = $this->session->userdata('user_name');
377
+		$data['page_title'] = 'Live Call Report';
378
+		$this->load->view('view_fs_livecall_report', $data);
379
+	}
380 380
 
381
-    function livecall_report_json() {
382
-        $command = "api show channels";
383
-        $response = $this->freeswitch_model->reload_live_freeswitch($command);
384
-        $calls = array();
385
-        $calls_final = array();
386
-        $data_header = array();
387
-        $k = 0;
388
-            $data = explode("\n",$response);
389
-            for ($i = 0; $i < count($data) - 2; $i++) {
390
-                if (trim($data[$i]) != '') {
391
-                    if (count($data_header) ==0 || substr($data[$i],0,4) == "uuid") {
392
-                        $data_header = explode(",", $data[$i]);
393
-                    } else {
394
-                        $data_call = explode(",", $data[$i]);
395
-                        for ($j = 0; $j < count($data_call); $j++) {
396
-                            $calls[$k][@$data_header[$j]] = @$data_call[$j];
397
-                            $calls_final[@$calls[$k]['uuid']] = @$calls[$k];
398
-                        }
399
-                        $k++;
400
-                    }
401
-                }
402
-            }
403
-        $json_data = array();
404
-        $count = 0;
405
-        foreach ($calls as $key => $value) {
406
-            if (isset($value['state']) && $value['state'] == 'CS_EXCHANGE_MEDIA') {
407
-                $calls[$i]['application'] = $calls_final[$value['call_uuid']]['application'];
408
-                $calls[$i]['application_data'] = $calls_final[$value['call_uuid']]['application_data'];
409
-                $json_data['rows'][] = array('cell' => array(
410
-                        $value['created'],
411
-                        $value['cid_name'],
412
-                        $value['cid_num'],
413
-                        $value['ip_addr'],
414
-                        $value['dest'],
415
-                        $calls[$i]['application_data'],
416
-                        $value['read_codec'],
417
-                        $value['write_codec'],
418
-                        $value['callstate'],
419
-                        date("H:i:s", strtotime(date("Y-m-d H:i:s")) - $value['created_epoch'])
420
-                        ));
421
-                $count++;
422
-            } else {
423
-                unset($calls[$i]);
424
-            }
425
-        }
381
+	function livecall_report_json() {
382
+		$command = "api show channels";
383
+		$response = $this->freeswitch_model->reload_live_freeswitch($command);
384
+		$calls = array();
385
+		$calls_final = array();
386
+		$data_header = array();
387
+		$k = 0;
388
+			$data = explode("\n",$response);
389
+			for ($i = 0; $i < count($data) - 2; $i++) {
390
+				if (trim($data[$i]) != '') {
391
+					if (count($data_header) ==0 || substr($data[$i],0,4) == "uuid") {
392
+						$data_header = explode(",", $data[$i]);
393
+					} else {
394
+						$data_call = explode(",", $data[$i]);
395
+						for ($j = 0; $j < count($data_call); $j++) {
396
+							$calls[$k][@$data_header[$j]] = @$data_call[$j];
397
+							$calls_final[@$calls[$k]['uuid']] = @$calls[$k];
398
+						}
399
+						$k++;
400
+					}
401
+				}
402
+			}
403
+		$json_data = array();
404
+		$count = 0;
405
+		foreach ($calls as $key => $value) {
406
+			if (isset($value['state']) && $value['state'] == 'CS_EXCHANGE_MEDIA') {
407
+				$calls[$i]['application'] = $calls_final[$value['call_uuid']]['application'];
408
+				$calls[$i]['application_data'] = $calls_final[$value['call_uuid']]['application_data'];
409
+				$json_data['rows'][] = array('cell' => array(
410
+						$value['created'],
411
+						$value['cid_name'],
412
+						$value['cid_num'],
413
+						$value['ip_addr'],
414
+						$value['dest'],
415
+						$calls[$i]['application_data'],
416
+						$value['read_codec'],
417
+						$value['write_codec'],
418
+						$value['callstate'],
419
+						date("H:i:s", strtotime(date("Y-m-d H:i:s")) - $value['created_epoch'])
420
+						));
421
+				$count++;
422
+			} else {
423
+				unset($calls[$i]);
424
+			}
425
+		}
426 426
 	$json_data['page'] = 1;
427
-        $json_data['total'] = $count;
428
-        echo json_encode($json_data);
429
-    }
427
+		$json_data['total'] = $count;
428
+		echo json_encode($json_data);
429
+	}
430 430
 
431
-    function fsgateway() {
432
-        $data['username'] = $this->session->userdata('user_name');
433
-        $data['page_title'] = 'Gateways';
431
+	function fsgateway() {
432
+		$data['username'] = $this->session->userdata('user_name');
433
+		$data['page_title'] = 'Gateways';
434 434
 	$data['search_flag'] = true;
435
-        $this->session->set_userdata('advance_search', 0);
436
-        $data['grid_fields'] = $this->freeswitch_form->build_fsgateway_list_for_admin();
437
-        $data["grid_buttons"] = $this->freeswitch_form->build_fdgateway_grid_buttons();
438
-      	$data['form_search']=$this->form->build_serach_form($this->freeswitch_form->get_gateway_search_form());
439
-        $this->load->view('view_fsgateway_list', $data);
440
-    }
435
+		$this->session->set_userdata('advance_search', 0);
436
+		$data['grid_fields'] = $this->freeswitch_form->build_fsgateway_list_for_admin();
437
+		$data["grid_buttons"] = $this->freeswitch_form->build_fdgateway_grid_buttons();
438
+	  	$data['form_search']=$this->form->build_serach_form($this->freeswitch_form->get_gateway_search_form());
439
+		$this->load->view('view_fsgateway_list', $data);
440
+	}
441 441
 
442
-    function fsgateway_json() {
443
-               $json_data = array();
442
+	function fsgateway_json() {
443
+			   $json_data = array();
444 444
 
445
-        $count_all = $this->freeswitch_model->get_gateway_list(false);
445
+		$count_all = $this->freeswitch_model->get_gateway_list(false);
446 446
 
447
-        $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
448
-        $json_data = $paging_data["json_paging"];
449
-        $gateway_data = array();
450
-        $query = $this->freeswitch_model->get_gateway_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
451
-        $gateway_result = array();
452
-        if ($query->num_rows > 0) {
453
-            $query = $query->result_array();
454
-            foreach ($query as $key => $query_value) {
447
+		$paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
448
+		$json_data = $paging_data["json_paging"];
449
+		$gateway_data = array();
450
+		$query = $this->freeswitch_model->get_gateway_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
451
+		$gateway_result = array();
452
+		if ($query->num_rows > 0) {
453
+			$query = $query->result_array();
454
+			foreach ($query as $key => $query_value) {
455 455
 $gateway_data=array();
456 456
 $tmp=null;
457
-                foreach ($query_value as $gateway_key => $gateway_val) {
458
-                    if ($gateway_key != "gateway_data") {
459
-                        $gateway_data[$gateway_key] = $gateway_val;
460
-                    } else {
461
-                        $tmp = (array) json_decode($gateway_val);
462
-                    }
463
-                }
464
-                        $gateway_result[$key] = array_merge($gateway_data, $tmp);
465
-            }
466
-        }
457
+				foreach ($query_value as $gateway_key => $gateway_val) {
458
+					if ($gateway_key != "gateway_data") {
459
+						$gateway_data[$gateway_key] = $gateway_val;
460
+					} else {
461
+						$tmp = (array) json_decode($gateway_val);
462
+					}
463
+				}
464
+						$gateway_result[$key] = array_merge($gateway_data, $tmp);
465
+			}
466
+		}
467 467
 
468
-        $grid_fields = json_decode($this->freeswitch_form->build_fsgateway_list_for_admin());
469
-        $json_data['rows'] = $this->form->build_json_grid($gateway_result, $grid_fields);
470
-        echo json_encode($json_data);
471
-    }
468
+		$grid_fields = json_decode($this->freeswitch_form->build_fsgateway_list_for_admin());
469
+		$json_data['rows'] = $this->form->build_json_grid($gateway_result, $grid_fields);
470
+		echo json_encode($json_data);
471
+	}
472 472
 
473
-    function fsgateway_add() {
474
-        $data['username'] = $this->session->userdata('user_name');
475
-        $data['flag'] = 'create';
476
-        $data['page_title'] = 'Create Gateway';
477
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), '');
478
-        $this->load->view('view_fsgateway_add', $data);
479
-    }
473
+	function fsgateway_add() {
474
+		$data['username'] = $this->session->userdata('user_name');
475
+		$data['flag'] = 'create';
476
+		$data['page_title'] = 'Create Gateway';
477
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), '');
478
+		$this->load->view('view_fsgateway_add', $data);
479
+	}
480 480
 
481
-    function fsgateway_edit($edit_id = '') {
482
-        $data['page_title'] = ' Edit Gateway';
483
-        $where = array('id' => $edit_id);
484
-        $query = $this->db_model->getSelect("*", "gateways", $where);
485
-        $query = $query->result_array();
486
-        $gateway_result = array();
487
-        foreach ($query as $key => $query_value) {
488
-            foreach ($query_value as $gateway_key => $gatewau_val) {
489
-  	        $gateway_data["status"] = isset($query_value["status"])?$query_value["status"]:"";
490
-                if ($gateway_key != "gateway_data") {
491
-                    $gateway_data[$gateway_key] = $gatewau_val;
492
-                }else if($gateway_key == "status") {
493
-                    $gateway_data[$gateway_key] = $gatewau_val;
494
-                } 
495
-                 /**
481
+	function fsgateway_edit($edit_id = '') {
482
+		$data['page_title'] = ' Edit Gateway';
483
+		$where = array('id' => $edit_id);
484
+		$query = $this->db_model->getSelect("*", "gateways", $where);
485
+		$query = $query->result_array();
486
+		$gateway_result = array();
487
+		foreach ($query as $key => $query_value) {
488
+			foreach ($query_value as $gateway_key => $gatewau_val) {
489
+  			$gateway_data["status"] = isset($query_value["status"])?$query_value["status"]:"";
490
+				if ($gateway_key != "gateway_data") {
491
+					$gateway_data[$gateway_key] = $gatewau_val;
492
+				}else if($gateway_key == "status") {
493
+					$gateway_data[$gateway_key] = $gatewau_val;
494
+				} 
495
+				 /**
496 496
                  ASTPP 3.0 
497 497
                  put one variable with the name of dialplan variable 
498
-                 **/ 
499
-                else if($gateway_key == "dialplan_variable") {
500
-                    $gateway_data[$gateway_key] = $gatewau_val;
501
-                } 
502
-                /****************************************************/
503
-                else {
504
-                    $tmp = (array) json_decode($gatewau_val);
505
-                    $gateway_result = array_merge($gateway_data, $tmp);
506
-                }
507
-            }
508
-        }
509
-        /**
498
+				  **/ 
499
+				else if($gateway_key == "dialplan_variable") {
500
+					$gateway_data[$gateway_key] = $gatewau_val;
501
+				} 
502
+				/****************************************************/
503
+				else {
504
+					$tmp = (array) json_decode($gatewau_val);
505
+					$gateway_result = array_merge($gateway_data, $tmp);
506
+				}
507
+			}
508
+		}
509
+		/**
510 510
         ASTPP  3.0 
511 511
         put one variable with the name of dialplan variable 
512
-        **/
513
-        if(!empty($gateway_data['dialplan_variable']) && $gateway_data['dialplan_variable'] != ''){
514
-         $gateway_result['dialplan_variable']  = $gateway_data['dialplan_variable'];
515
-         }else{
516
-         $gateway_result['dialplan_variable'] = '';
517
-         }
518
-         /**********************************************************************************************/
519
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), $gateway_result);
520
-        $this->load->view('view_fsgateway_add', $data);
521
-    }
512
+		 **/
513
+		if(!empty($gateway_data['dialplan_variable']) && $gateway_data['dialplan_variable'] != ''){
514
+		 $gateway_result['dialplan_variable']  = $gateway_data['dialplan_variable'];
515
+		 }else{
516
+		 $gateway_result['dialplan_variable'] = '';
517
+		 }
518
+		 /**********************************************************************************************/
519
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), $gateway_result);
520
+		$this->load->view('view_fsgateway_add', $data);
521
+	}
522 522
 
523
-    function fsgateway_save() {
524
-        $gateway_data = $this->input->post();
525
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), $gateway_data);
526
-        $insert_arr = array();
527
-        $gateway_arr = array();
528
-        $insert_arr['dialplan_variable'] ="";
529
-        foreach ($gateway_data as $key => $gateway_value) {
530
-            if ($gateway_value != "") {
531
-                if ($key == "sip_profile_id") {
532
-                    $insert_arr['sip_profile_id'] = $gateway_data["sip_profile_id"];
533
-                } else if ($key == "name") {
534
-                    $insert_arr['name'] = $gateway_data["name"];
535
-                } else if ($key == "sip_profile_id") {
536
-                    $insert_arr['sip_profile_id'] = $gateway_data["sip_profile_id"];
537
-                }
538
-                /**
523
+	function fsgateway_save() {
524
+		$gateway_data = $this->input->post();
525
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), $gateway_data);
526
+		$insert_arr = array();
527
+		$gateway_arr = array();
528
+		$insert_arr['dialplan_variable'] ="";
529
+		foreach ($gateway_data as $key => $gateway_value) {
530
+			if ($gateway_value != "") {
531
+				if ($key == "sip_profile_id") {
532
+					$insert_arr['sip_profile_id'] = $gateway_data["sip_profile_id"];
533
+				} else if ($key == "name") {
534
+					$insert_arr['name'] = $gateway_data["name"];
535
+				} else if ($key == "sip_profile_id") {
536
+					$insert_arr['sip_profile_id'] = $gateway_data["sip_profile_id"];
537
+				}
538
+				/**
539 539
                 ASTPP  3.0 
540 540
                 put one variable with the name of dialplan variable 
541
-                **/ 
542
-                else if ($key == "dialplan_variable") {
543
-                    $insert_arr['dialplan_variable'] = $gateway_data["dialplan_variable"];
544
-                }
545
-                /*********************************************************************/
546
-                else if($key == "status") {
547
-                    $insert_arr[$key] = $gateway_data["status"];
548
-                }  else {
549
-                    if ($key != "id") {
550
-                        $gateway_arr[$key] = $gateway_value;
551
-                    }
552
-                }
553
-            }
554
-        }
541
+				 **/ 
542
+				else if ($key == "dialplan_variable") {
543
+					$insert_arr['dialplan_variable'] = $gateway_data["dialplan_variable"];
544
+				}
545
+				/*********************************************************************/
546
+				else if($key == "status") {
547
+					$insert_arr[$key] = $gateway_data["status"];
548
+				}  else {
549
+					if ($key != "id") {
550
+						$gateway_arr[$key] = $gateway_value;
551
+					}
552
+				}
553
+			}
554
+		}
555 555
 
556
-        $insert_arr["gateway_data"] = json_encode($gateway_arr);
556
+		$insert_arr["gateway_data"] = json_encode($gateway_arr);
557 557
 
558
-        if ($gateway_data['id'] != '') {
559
-            $data['page_title'] = 'Edit Gateway Details';
560
-            if ($this->form_validation->run() == FALSE) {
561
-                $data['validation_errors'] = validation_errors();
562
-                echo $data['validation_errors'];
563
-                exit;
564
-            } else {
558
+		if ($gateway_data['id'] != '') {
559
+			$data['page_title'] = 'Edit Gateway Details';
560
+			if ($this->form_validation->run() == FALSE) {
561
+				$data['validation_errors'] = validation_errors();
562
+				echo $data['validation_errors'];
563
+				exit;
564
+			} else {
565 565
 		if ( preg_match('/\s/',$insert_arr['name']) )
566 566
 		{
567 567
 		  echo json_encode(array("name_error"=> "Gateway name must not have any space."));
@@ -573,167 +573,167 @@  discard block
 block discarded – undo
573 573
 		*/
574 574
 		$insert_arr['last_modified_date']=gmdate('Y-m-d H:i:s');
575 575
 		/*************************************************/
576
-                $update = $this->db->update("gateways", $insert_arr, array('id' => $gateway_data['id']));
577
-                if ($update) {
578
-                    $profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
579
-		    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
580
-                    $cmd = "api sofia profile ".$profile_name." killgw '".$insert_arr['name']."' ";
581
-                    $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
576
+				$update = $this->db->update("gateways", $insert_arr, array('id' => $gateway_data['id']));
577
+				if ($update) {
578
+					$profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
579
+			$sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
580
+					$cmd = "api sofia profile ".$profile_name." killgw '".$insert_arr['name']."' ";
581
+					$this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
582 582
 
583
-                    $cmd2 = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
584
-                    $this->freeswitch_model->reload_freeswitch($cmd2,$sip_ip);
585
-                }
586
-                echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Updated Successfully!"));
587
-                exit;
588
-            }
589
-        } else {
590
-            $data['page_title'] = 'Create Gateway Details';
591
-            if ($this->form_validation->run() == FALSE) {
592
-                $data['validation_errors'] = validation_errors();
593
-                echo $data['validation_errors'];
594
-                exit;
595
-            } else {
583
+					$cmd2 = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
584
+					$this->freeswitch_model->reload_freeswitch($cmd2,$sip_ip);
585
+				}
586
+				echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Updated Successfully!"));
587
+				exit;
588
+			}
589
+		} else {
590
+			$data['page_title'] = 'Create Gateway Details';
591
+			if ($this->form_validation->run() == FALSE) {
592
+				$data['validation_errors'] = validation_errors();
593
+				echo $data['validation_errors'];
594
+				exit;
595
+			} else {
596 596
 		if ( preg_match('/\s/',$insert_arr['name']) )
597 597
 		{
598 598
 		  echo json_encode(array("name_error"=> "Gateway name must not have any space."));
599 599
 		  exit;
600 600
 		}
601
-        	$insert_arr['created_date']=gmdate('Y-m-d H:i:s'); 
602
-                $insert = $this->db->insert("gateways", $insert_arr);
603
-                if ($insert) {
604
-                    $profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
605
-		    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
606
-                    $cmd = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
607
-                    $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
608
-                }
609
-                echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Added Successfully!"));
610
-                exit;
611
-            }
612
-        }
613
-    }
601
+			$insert_arr['created_date']=gmdate('Y-m-d H:i:s'); 
602
+				$insert = $this->db->insert("gateways", $insert_arr);
603
+				if ($insert) {
604
+					$profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
605
+			$sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
606
+					$cmd = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
607
+					$this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
608
+				}
609
+				echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Added Successfully!"));
610
+				exit;
611
+			}
612
+		}
613
+	}
614 614
 
615
-    function fsgateway_delete($gateway_id) {
616
-        $delete = $this->db_model->delete("gateways", array("id" => $gateway_id));
617
-        if ($delete) {
618
-            $profile_id = $this->common->get_field_name('sip_profile_id', 'gateways', $gateway_id);
619
-            $profile_name = $this->common->get_field_name('name', 'sip_profiles', $profile_id);
620
-	    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
621
-            $gateway_name = $this->common->get_field_name('name', 'gateways', $gateway_id);
622
-            $cmd = "api sofia profile " . $profile_name . " killgw " . $gateway_name . " reloadxml";
623
-            $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
624
-        }
615
+	function fsgateway_delete($gateway_id) {
616
+		$delete = $this->db_model->delete("gateways", array("id" => $gateway_id));
617
+		if ($delete) {
618
+			$profile_id = $this->common->get_field_name('sip_profile_id', 'gateways', $gateway_id);
619
+			$profile_name = $this->common->get_field_name('name', 'sip_profiles', $profile_id);
620
+		$sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
621
+			$gateway_name = $this->common->get_field_name('name', 'gateways', $gateway_id);
622
+			$cmd = "api sofia profile " . $profile_name . " killgw " . $gateway_name . " reloadxml";
623
+			$this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
624
+		}
625 625
 
626
-        $this->session->set_flashdata('astpp_notification', 'Gateway Removed Successfully!');
627
-        redirect(base_url() . 'freeswitch/fsgateway/');
628
-    }
626
+		$this->session->set_flashdata('astpp_notification', 'Gateway Removed Successfully!');
627
+		redirect(base_url() . 'freeswitch/fsgateway/');
628
+	}
629 629
 
630
-    function fsgateway_delete_multiple() {
631
-        $ids = $this->input->post("selected_ids", true);
632
-        $where = "id IN ($ids)";
633
-        $this->db->where($where);
634
-        echo $this->db->delete("gateways");
635
-    }
630
+	function fsgateway_delete_multiple() {
631
+		$ids = $this->input->post("selected_ids", true);
632
+		$where = "id IN ($ids)";
633
+		$this->db->where($where);
634
+		echo $this->db->delete("gateways");
635
+	}
636 636
 
637
-    function fssipprofile() {
638
-        $data['username'] = $this->session->userdata('user_name');
639
-        $data['page_title'] = 'SIP Profile';
637
+	function fssipprofile() {
638
+		$data['username'] = $this->session->userdata('user_name');
639
+		$data['page_title'] = 'SIP Profile';
640 640
 	$data['search_flag'] = true;
641
-        $this->session->set_userdata('advance_search', 0);
642
-        $data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_list_for_admin();
643
-        $data["grid_buttons"] = $this->freeswitch_form->build_fssipprofile_grid_buttons();
641
+		$this->session->set_userdata('advance_search', 0);
642
+		$data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_list_for_admin();
643
+		$data["grid_buttons"] = $this->freeswitch_form->build_fssipprofile_grid_buttons();
644 644
 	$data['form_search']=$this->form->build_serach_form($this->freeswitch_form->get_sipprofile_search_form());
645 645
 	$data['button_name']="Add Setting";
646 646
 	//$data['form_search'] = $this->form->build_serach_form($this->trunk_form->get_trunk_search_form());
647
-        $this->load->view('view_fssipprofile_list', $data);
648
-    }
647
+		$this->load->view('view_fssipprofile_list', $data);
648
+	}
649 649
 
650
-    function fssipprofile_delete_multiple() {
651
-        $ids = $this->input->post("selected_ids", true);
652
-        $where = "id IN ($ids)";
653
-        $this->db->where($where);
654
-        echo $this->db->delete("sip_profiles");
655
-    }
650
+	function fssipprofile_delete_multiple() {
651
+		$ids = $this->input->post("selected_ids", true);
652
+		$where = "id IN ($ids)";
653
+		$this->db->where($where);
654
+		echo $this->db->delete("sip_profiles");
655
+	}
656 656
 
657
-    function fssipprofile_json() {
658
-        $json_data = array();
659
-        $count_all = $this->freeswitch_model->get_sipprofile_list(false);
660
-        $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
661
-        $json_data = $paging_data["json_paging"];
662
-        $gateway_data = array();
663
-        $query = $this->freeswitch_model->get_sipprofile_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
664
-        $grid_fields = json_decode($this->freeswitch_form->build_fssipprofile_list_for_admin());
665
-        $json_data['rows'] = $this->form->build_grid($query, $grid_fields);
657
+	function fssipprofile_json() {
658
+		$json_data = array();
659
+		$count_all = $this->freeswitch_model->get_sipprofile_list(false);
660
+		$paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
661
+		$json_data = $paging_data["json_paging"];
662
+		$gateway_data = array();
663
+		$query = $this->freeswitch_model->get_sipprofile_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
664
+		$grid_fields = json_decode($this->freeswitch_form->build_fssipprofile_list_for_admin());
665
+		$json_data['rows'] = $this->form->build_grid($query, $grid_fields);
666 666
 
667
-        echo json_encode($json_data);
668
-    }
669
-    function fssipprofile_params_json($edited_id)
670
-    {
667
+		echo json_encode($json_data);
668
+	}
669
+	function fssipprofile_params_json($edited_id)
670
+	{
671 671
 	$json_data = array();
672
-        $gateway_data = array();
672
+		$gateway_data = array();
673 673
 	$where = array('id' => $edited_id);
674
-        $query = $this->db_model->getSelect("*", "sip_profiles", $where);
675
-        $query = $query->result_array();
676
-        $gateway_result = array();
677
-        $i=0;
678
-        foreach ($query as $key => $query_value) {
679
-            foreach ($query_value as $gateway_key => $gatewau_val) {
680
-	      if($gateway_key != 'id' && $gateway_key != 'name' && $gateway_key != 'sip_ip' && $gateway_key != 'sip_port'){
681
-                if ($gateway_key != "profile_data") {
682
-                    $gateway_data[$gateway_key] = $gatewau_val;
683
-                } else {
684
-                    $tmp = (array) json_decode($gatewau_val);
685
-                    $gateway_result = array_merge($gateway_data, $tmp);
686
-                }
674
+		$query = $this->db_model->getSelect("*", "sip_profiles", $where);
675
+		$query = $query->result_array();
676
+		$gateway_result = array();
677
+		$i=0;
678
+		foreach ($query as $key => $query_value) {
679
+			foreach ($query_value as $gateway_key => $gatewau_val) {
680
+		  if($gateway_key != 'id' && $gateway_key != 'name' && $gateway_key != 'sip_ip' && $gateway_key != 'sip_port'){
681
+				if ($gateway_key != "profile_data") {
682
+					$gateway_data[$gateway_key] = $gatewau_val;
683
+				} else {
684
+					$tmp = (array) json_decode($gatewau_val);
685
+					$gateway_result = array_merge($gateway_data, $tmp);
686
+				}
687 687
 	}
688
-      }
689
-    }
690
-         $paging_data = $this->form->load_grid_config(count($gateway_result), $_GET['rp'], $_GET['page']);
691
-         $json_data = $paging_data["json_paging"];
688
+	  }
689
+	}
690
+		 $paging_data = $this->form->load_grid_config(count($gateway_result), $_GET['rp'], $_GET['page']);
691
+		 $json_data = $paging_data["json_paging"];
692 692
     
693 693
 	  foreach ($gateway_result as $key => $value) {
694 694
 	  $json_data['rows'][] = array('cell' => array(
695
-	      $key,
696
-	      $value,
697
-	      array('<a href="/freeswitch/fssipprofile_edit/'.$edited_id.'/edit/' . $key .'/" class="btn btn-royelblue btn-sm"  title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;<a href="/freeswitch/fssipprofile_delete_params/'.$edited_id.'/' . $key .'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>')
698
-	      ));
695
+		  $key,
696
+		  $value,
697
+		  array('<a href="/freeswitch/fssipprofile_edit/'.$edited_id.'/edit/' . $key .'/" class="btn btn-royelblue btn-sm"  title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;<a href="/freeswitch/fssipprofile_delete_params/'.$edited_id.'/' . $key .'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>')
698
+		  ));
699 699
   }
700
-        echo json_encode($json_data);
701
-    }
702
-     function fssipprofile_action($button_name,$id) {
703
-        $where = array('id' => $id);
704
-        $query = $this->db_model->getSelect("*", "sip_profiles", $where);
705
-        $query = $query->result_array();
706
-        $where = array('sip_profile_id' => $id);
707
-        if($button_name == "start")
708
-        { 
709
-           $cmd = "api sofia profile " . trim($query[0]['name']) ." start"; 
710
-        }
711
-        elseif($button_name == "stop")
712
-        {
713
-            $cmd= "api sofia profile stop";
714
-        }
715
-        elseif($button_name == "reload")
716
-        {
717
-            $cmd = "api reloadxml";
718
-        }
719
-        elseif($button_name == "rescan")
720
-        {
721
-            $cmd = "api sofia profile " . trim($query[0]['name']) . " rescan";
722
-        }
700
+		echo json_encode($json_data);
701
+	}
702
+	 function fssipprofile_action($button_name,$id) {
703
+		$where = array('id' => $id);
704
+		$query = $this->db_model->getSelect("*", "sip_profiles", $where);
705
+		$query = $query->result_array();
706
+		$where = array('sip_profile_id' => $id);
707
+		if($button_name == "start")
708
+		{ 
709
+		   $cmd = "api sofia profile " . trim($query[0]['name']) ." start"; 
710
+		}
711
+		elseif($button_name == "stop")
712
+		{
713
+			$cmd= "api sofia profile stop";
714
+		}
715
+		elseif($button_name == "reload")
716
+		{
717
+			$cmd = "api reloadxml";
718
+		}
719
+		elseif($button_name == "rescan")
720
+		{
721
+			$cmd = "api sofia profile " . trim($query[0]['name']) . " rescan";
722
+		}
723 723
         
724
-        $this->freeswitch_model->reload_freeswitch($cmd);
724
+		$this->freeswitch_model->reload_freeswitch($cmd);
725 725
 	redirect(base_url() . 'freeswitch/fssipprofile/');   
726
-    }
727
-     function fssipprofile_add($add='') {
726
+	}
727
+	 function fssipprofile_add($add='') {
728 728
      
729
-        $data['username'] = $this->session->userdata('user_name');
730
-        $data['flag'] = 'create';
731
-        $data['page_title'] = 'Create SIP Profile';
732
-        $sipprofile_data = $this->input->post();
733
-         $sipprofile_data['status']=$sipprofile_data['sipstatus'];
734
-        $data['button_name']="Add Setting";
735
-        if($add == 'add')
736
-        {
729
+		$data['username'] = $this->session->userdata('user_name');
730
+		$data['flag'] = 'create';
731
+		$data['page_title'] = 'Create SIP Profile';
732
+		$sipprofile_data = $this->input->post();
733
+		 $sipprofile_data['status']=$sipprofile_data['sipstatus'];
734
+		$data['button_name']="Add Setting";
735
+		if($add == 'add')
736
+		{
737 737
           
738 738
 	  unset($sipprofile_data['action']);
739 739
 	   unset($sipprofile_data['sipstatus']);
@@ -741,98 +741,98 @@  discard block
 block discarded – undo
741 741
 	  
742 742
 	  if($sipprofile_data['name'] == '' || $sipprofile_data['sip_ip'] =='' || $sipprofile_data['sip_port'] =='')
743 743
 	  {
744
-	      $this->session->set_flashdata('astpp_notification', 'Please enter All profile value!');
745
-	      redirect(base_url() . 'freeswitch/fssipprofile_add/');
746
-	      exit;
744
+		  $this->session->set_flashdata('astpp_notification', 'Please enter All profile value!');
745
+		  redirect(base_url() . 'freeswitch/fssipprofile_add/');
746
+		  exit;
747 747
 	  }
748 748
 	  if(preg_match('/\s/',$sipprofile_data['name']))
749 749
 	  {
750
-	    $this->session->set_flashdata('astpp_notification', 'SIP Profile name must not have any space!');
751
- 	    redirect(base_url() . 'freeswitch/fssipprofile_add/');
752
- 	    exit;
750
+		$this->session->set_flashdata('astpp_notification', 'SIP Profile name must not have any space!');
751
+ 		redirect(base_url() . 'freeswitch/fssipprofile_add/');
752
+ 		exit;
753 753
 	  }
754 754
 	  if(!preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\z/', $sipprofile_data['sip_ip']))
755 755
 	  {
756
-	    $this->session->set_flashdata('astpp_notification', 'SIP IP must be proper!');
757
- 	    redirect(base_url() . 'freeswitch/fssipprofile_add/');
758
- 	    exit;
756
+		$this->session->set_flashdata('astpp_notification', 'SIP IP must be proper!');
757
+ 		redirect(base_url() . 'freeswitch/fssipprofile_add/');
758
+ 		exit;
759 759
 	  }
760 760
 	  $sipprofile_data['id']='';
761 761
 	  $check_authentication = $this->freeswitch_model->profile_authentication($sipprofile_data);
762 762
 	  if ($check_authentication->num_rows == 0) {
763 763
 	      
764
-	      $sipprofile_data['created_date']=gmdate('Y-m-d H:i:s');
765
-	     /** Version 2.1
766
-	      * Purpose : Set default data for new created profile
767
-	      **/
768
- 	      $sipprofile_data['profile_data'] = $this->common->sip_profile_date();
769
-	      /**====================================================================*/
770
-	      $insert = $this->db->insert("sip_profiles", $sipprofile_data);
764
+		  $sipprofile_data['created_date']=gmdate('Y-m-d H:i:s');
765
+		 /** Version 2.1
766
+		  * Purpose : Set default data for new created profile
767
+		  **/
768
+ 		  $sipprofile_data['profile_data'] = $this->common->sip_profile_date();
769
+		  /**====================================================================*/
770
+		  $insert = $this->db->insert("sip_profiles", $sipprofile_data);
771 771
 
772
-	    }
773
-	    else {
774
-                    $this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
775
-		    redirect(base_url() . 'freeswitch/fssipprofile_add/');
776
-	    }
777
-	    $this->session->set_flashdata('astpp_errormsg', 'SIP Profile Added Successfully!');
778
-	    redirect(base_url() . 'freeswitch/fssipprofile/');
779
-        }
772
+		}
773
+		else {
774
+					$this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
775
+			redirect(base_url() . 'freeswitch/fssipprofile_add/');
776
+		}
777
+		$this->session->set_flashdata('astpp_errormsg', 'SIP Profile Added Successfully!');
778
+		redirect(base_url() . 'freeswitch/fssipprofile/');
779
+		}
780 780
 	
781
-        if($add == 'edit')
782
-        {
781
+		if($add == 'edit')
782
+		{
783 783
 	  $check_authentication = $this->freeswitch_model->profile_authentication($sipprofile_data);
784
-	    unset($sipprofile_data['action']);
785
-	    unset($sipprofile_data['sipstatus']);
786
-	    $insert_arr = $sipprofile_data;
787
-	        if ($check_authentication->num_rows == 0) {
788
-		    $insert_arr['last_modified_date']=gmdate("Y-m-d H:i:s");
789
-                    $update = $this->db->update("sip_profiles", $insert_arr, array('id' => $sipprofile_data['id']));
790
-                    $this->session->set_flashdata('astpp_errormsg', $sipprofile_data['name']." SIP Profile Updated Successfully!");
791
-                    redirect(base_url() . 'freeswitch/fssipprofile/');   
792
-                    exit;
793
-                } else {
794
-                    $this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
795
-		    redirect(base_url() . 'freeswitch/fssipprofile/');
796
-                }
784
+		unset($sipprofile_data['action']);
785
+		unset($sipprofile_data['sipstatus']);
786
+		$insert_arr = $sipprofile_data;
787
+			if ($check_authentication->num_rows == 0) {
788
+			$insert_arr['last_modified_date']=gmdate("Y-m-d H:i:s");
789
+					$update = $this->db->update("sip_profiles", $insert_arr, array('id' => $sipprofile_data['id']));
790
+					$this->session->set_flashdata('astpp_errormsg', $sipprofile_data['name']." SIP Profile Updated Successfully!");
791
+					redirect(base_url() . 'freeswitch/fssipprofile/');   
792
+					exit;
793
+				} else {
794
+					$this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
795
+			redirect(base_url() . 'freeswitch/fssipprofile/');
796
+				}
797 797
 	  redirect(base_url() . 'freeswitch/fssipprofile/');   
798
-        }
799
-        $this->load->view('view_fssipprofile_add', $data);
800
-    }
798
+		}
799
+		$this->load->view('view_fssipprofile_add', $data);
800
+	}
801 801
 
802 802
 
803
-    function fssipprofile_edit($edit_id = '',$type='',$name_prams='') {
804
-        $data['page_title'] = 'Edit SIP Profile';
805
-          $sipprofile_data = $this->input->post();
806
-        if(!$edit_id)
807
-        {
803
+	function fssipprofile_edit($edit_id = '',$type='',$name_prams='') {
804
+		$data['page_title'] = 'Edit SIP Profile';
805
+		  $sipprofile_data = $this->input->post();
806
+		if(!$edit_id)
807
+		{
808 808
 	  $edit_id=$sipprofile_data['id'];
809
-        }
810
-        $where = array('id' => $edit_id);
811
-        $query = $this->db_model->getSelect("*", "sip_profiles", $where);
812
-        $query = $query->result_array();
813
-        $gateway_result = array();
814
-        foreach ($query as $key => $query_value) {
815
-            foreach ($query_value as $gateway_key => $gatewau_val) {
816
-                if ($gateway_key != "profile_data") {
817
-                    $gateway_data[$gateway_key] = $gatewau_val;
818
-                } else {
819
-                    $tmp = (array) json_decode($gatewau_val);
820
-                    $gateway_result = array_merge($gateway_data, $tmp);
821
-                }
822
-            }
823
-        }
824
-        $data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_params_list_for_admin();
825
-        $data['edited_id'] = $edit_id;
826
-        $data['sip_name']=$query[0]['name'];
809
+		}
810
+		$where = array('id' => $edit_id);
811
+		$query = $this->db_model->getSelect("*", "sip_profiles", $where);
812
+		$query = $query->result_array();
813
+		$gateway_result = array();
814
+		foreach ($query as $key => $query_value) {
815
+			foreach ($query_value as $gateway_key => $gatewau_val) {
816
+				if ($gateway_key != "profile_data") {
817
+					$gateway_data[$gateway_key] = $gatewau_val;
818
+				} else {
819
+					$tmp = (array) json_decode($gatewau_val);
820
+					$gateway_result = array_merge($gateway_data, $tmp);
821
+				}
822
+			}
823
+		}
824
+		$data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_params_list_for_admin();
825
+		$data['edited_id'] = $edit_id;
826
+		$data['sip_name']=$query[0]['name'];
827 827
 	$data['status']=$query[0]['status'];
828 828
 	$data['sip_ip']= $query[0]['sip_ip'];
829 829
 	$data['sip_port']=$query[0]['sip_port'];
830 830
 	$data['id']=$query[0]['id'];
831
-        $data['button_name']="Add Setting";
832
-        if($type == 'edit' || isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save')
833
-        {
834
-	    if($type == 'edit')
835
-	    {
831
+		$data['button_name']="Add Setting";
832
+		if($type == 'edit' || isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save')
833
+		{
834
+		if($type == 'edit')
835
+		{
836 836
 		$data['params_name']=$name_prams;
837 837
 		$data['params_status']=0;
838 838
 		if($gateway_result[$name_prams] == "true" || $gateway_result[$name_prams] == "false")
@@ -841,192 +841,192 @@  discard block
 block discarded – undo
841 841
 		}
842 842
 		$data['params_value']=$gateway_result[$name_prams];
843 843
 		$data['button_name']="Update Setting";
844
-	    }
845
-	    if(isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save'){
844
+		}
845
+		if(isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save'){
846 846
 		$sipprofile_data = $this->input->post();
847 847
 		$tmp[$sipprofile_data['params_name']]=$sipprofile_data['params_value'];
848 848
 		  $final_data= json_encode($tmp);
849 849
 		  $insert_arr["profile_data"] = json_encode($tmp);
850 850
 		  $update = $this->db->update("sip_profiles", $insert_arr, array('id' => $edit_id));
851 851
 		   if($sipprofile_data['type_settings']=="add_setting"){
852
-		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Added Successfully!");
853
-                  }else{
854
-		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Updated Successfully!");
852
+			$this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Added Successfully!");
853
+				  }else{
854
+			$this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Updated Successfully!");
855 855
 		    
856
-                  }
857
-                  redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$sipprofile_data['id']);
856
+				  }
857
+				  redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$sipprofile_data['id']);
858 858
 		  exit;
859 859
 
860
-	    }
861
-        }
862
-        $this->load->view('view_fssipprofile_edit', $data);
863
-    }
860
+		}
861
+		}
862
+		$this->load->view('view_fssipprofile_edit', $data);
863
+	}
864 864
 
865 865
    function fssipprofile_save($id) {
866 866
 	$sipprofile_data = $this->input->post();
867 867
 	$insert_arr = array();
868
-        $sipprofile_arr = array();
868
+		$sipprofile_arr = array();
869 869
 	$where = array('id' => $id);
870
-        $query = $this->db_model->getSelect("*", "sip_profiles", $where);
871
-        $query = $query->result_array();
872
-        $gateway_result = array();
873
-        foreach ($query as $key => $query_value) {
874
-            foreach ($query_value as $gateway_key => $gatewau_val) {
875
-                if ($gateway_key != "profile_data") {
876
-                    $gateway_data[$gateway_key] = $gatewau_val;
877
-                } else {
878
-                    $tmp = (array) json_decode($gatewau_val);
879
-                    $gateway_result = array_merge($gateway_data, $tmp);
880
-                }
881
-            }
882
-        }
883
-        $tmp[$sipprofile_data['params_name']]=$sipprofile_data['params_value'];
870
+		$query = $this->db_model->getSelect("*", "sip_profiles", $where);
871
+		$query = $query->result_array();
872
+		$gateway_result = array();
873
+		foreach ($query as $key => $query_value) {
874
+			foreach ($query_value as $gateway_key => $gatewau_val) {
875
+				if ($gateway_key != "profile_data") {
876
+					$gateway_data[$gateway_key] = $gatewau_val;
877
+				} else {
878
+					$tmp = (array) json_decode($gatewau_val);
879
+					$gateway_result = array_merge($gateway_data, $tmp);
880
+				}
881
+			}
882
+		}
883
+		$tmp[$sipprofile_data['params_name']]=$sipprofile_data['params_value'];
884 884
 	$final_data= json_encode($tmp);
885 885
 	$insert_arr["profile_data"] = json_encode($tmp);
886 886
 	$update = $this->db->update("sip_profiles", $insert_arr, array('id' => $id));
887 887
 	$this->load->view('view_fssipprofile_edit', $data);
888
-    }
888
+	}
889 889
     
890
-    function fssipprofile_delete_params($id,$name) {
890
+	function fssipprofile_delete_params($id,$name) {
891 891
 	$where = array('id' => $id);
892
-        $query = $this->db_model->getSelect("*", "sip_profiles", $where);
893
-        $query = $query->result_array();
894
-        $gateway_result = array();
895
-        foreach ($query as $key => $query_value) {
896
-            foreach ($query_value as $gateway_key => $gatewau_val) {
897
-                if ($gateway_key != "profile_data") {
898
-                    $gateway_data[$gateway_key] = $gatewau_val;
899
-                } else {
900
-                    $tmp = (array) json_decode($gatewau_val);
901
-                    $gateway_result = array_merge($gateway_data, $tmp);
902
-                }
903
-            }
904
-        }
892
+		$query = $this->db_model->getSelect("*", "sip_profiles", $where);
893
+		$query = $query->result_array();
894
+		$gateway_result = array();
895
+		foreach ($query as $key => $query_value) {
896
+			foreach ($query_value as $gateway_key => $gatewau_val) {
897
+				if ($gateway_key != "profile_data") {
898
+					$gateway_data[$gateway_key] = $gatewau_val;
899
+				} else {
900
+					$tmp = (array) json_decode($gatewau_val);
901
+					$gateway_result = array_merge($gateway_data, $tmp);
902
+				}
903
+			}
904
+		}
905 905
 	if(isset($tmp[$name])){
906 906
 	  unset($tmp[$name]);
907 907
 	}
908 908
 	$insert_arr["profile_data"] = json_encode($tmp);
909 909
 	$update = $this->db->update("sip_profiles", $insert_arr, array('id' => $id));
910
-        $this->session->set_flashdata('astpp_notification', $name.' SIP Setting Removed Successfully!');
911
-        redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$id);
912
-    }
910
+		$this->session->set_flashdata('astpp_notification', $name.' SIP Setting Removed Successfully!');
911
+		redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$id);
912
+	}
913 913
     
914
-    function fssipprofile_delete($profile_id) {
914
+	function fssipprofile_delete($profile_id) {
915 915
 	$profile_name = $this->common->get_field_name('name', 'sip_profiles', $profile_id);
916
-        $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
916
+		$sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
917 917
 	$delete = $this->db_model->delete("sip_profiles", array("id" => $profile_id));
918
-        $this->session->set_flashdata('astpp_notification', 'SIP Profile Removed Successfully!');
919
-        redirect(base_url() . 'freeswitch/fssipprofile/');
920
-    }
918
+		$this->session->set_flashdata('astpp_notification', 'SIP Profile Removed Successfully!');
919
+		redirect(base_url() . 'freeswitch/fssipprofile/');
920
+	}
921 921
 
922
-    function fsserver_list() {
922
+	function fsserver_list() {
923 923
 
924
-        $data['username'] = $this->session->userdata('user_name');
925
-        $data['page_title'] = 'Freeswitch Servers';
926
-        $data['search_flag'] = true;
927
-        $data['cur_menu_no'] = 1;
928
-        $this->session->set_userdata('advance_search', 0);
929
-        $data['grid_fields'] = $this->freeswitch_form->build_fsserver_list();
930
-        $data["grid_buttons"] = $this->freeswitch_form->build_fsserver_grid_buttons();
924
+		$data['username'] = $this->session->userdata('user_name');
925
+		$data['page_title'] = 'Freeswitch Servers';
926
+		$data['search_flag'] = true;
927
+		$data['cur_menu_no'] = 1;
928
+		$this->session->set_userdata('advance_search', 0);
929
+		$data['grid_fields'] = $this->freeswitch_form->build_fsserver_list();
930
+		$data["grid_buttons"] = $this->freeswitch_form->build_fsserver_grid_buttons();
931 931
 
932
-        $data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_search_fsserver_form());
933
-        $this->load->view('view_fsserver_list', $data);
934
-    }
932
+		$data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_search_fsserver_form());
933
+		$this->load->view('view_fsserver_list', $data);
934
+	}
935 935
 
936
-    /**
937
-     * -------Here we write code for controller accounts functions account_list------
938
-     * Listing of Accounts table data through php function json_encode
939
-     */
940
-    function fsserver_list_json() {
941
-        $json_data = array();
936
+	/**
937
+	 * -------Here we write code for controller accounts functions account_list------
938
+	 * Listing of Accounts table data through php function json_encode
939
+	 */
940
+	function fsserver_list_json() {
941
+		$json_data = array();
942 942
 
943
-        $count_all = $this->freeswitch_model->get_fsserver_list(false);
944
-        $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
945
-        $json_data = $paging_data["json_paging"];
946
-        $query = $this->freeswitch_model->get_fsserver_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
947
-        $grid_fields = json_decode($this->freeswitch_form->build_fsserver_list());
948
-        $json_data['rows'] = $this->form->build_grid($query, $grid_fields);
943
+		$count_all = $this->freeswitch_model->get_fsserver_list(false);
944
+		$paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
945
+		$json_data = $paging_data["json_paging"];
946
+		$query = $this->freeswitch_model->get_fsserver_list(true, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
947
+		$grid_fields = json_decode($this->freeswitch_form->build_fsserver_list());
948
+		$json_data['rows'] = $this->form->build_grid($query, $grid_fields);
949 949
 
950
-        echo json_encode($json_data);
951
-    }
950
+		echo json_encode($json_data);
951
+	}
952 952
 
953
-    function fsserver_add($type = "") {
954
-        $data['username'] = $this->session->userdata('user_name');
955
-        $data['flag'] = 'create';
956
-        $data['page_title'] = 'Create Freeswich Server';
957
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), '');
953
+	function fsserver_add($type = "") {
954
+		$data['username'] = $this->session->userdata('user_name');
955
+		$data['flag'] = 'create';
956
+		$data['page_title'] = 'Create Freeswich Server';
957
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), '');
958 958
 
959
-        $this->load->view('view_fsserver_add_edit', $data);
960
-    }
959
+		$this->load->view('view_fsserver_add_edit', $data);
960
+	}
961 961
 
962
-    function fsserver_edit($edit_id = '') {
963
-        $data['page_title'] = 'Edit Freeswich Server';
964
-        $where = array('id' => $edit_id);
965
-        $account = $this->db_model->getSelect("*", "freeswich_servers", $where);
966
-        foreach ($account->result_array() as $key => $value) {
967
-            $edit_data = $value;
968
-        }
969
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), $edit_data);
970
-        $this->load->view('view_fsserver_add_edit', $data);
971
-    }
962
+	function fsserver_edit($edit_id = '') {
963
+		$data['page_title'] = 'Edit Freeswich Server';
964
+		$where = array('id' => $edit_id);
965
+		$account = $this->db_model->getSelect("*", "freeswich_servers", $where);
966
+		foreach ($account->result_array() as $key => $value) {
967
+			$edit_data = $value;
968
+		}
969
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), $edit_data);
970
+		$this->load->view('view_fsserver_add_edit', $data);
971
+	}
972 972
 
973
-    function fsserver_save() {
974
-        $add_array = $this->input->post();
973
+	function fsserver_save() {
974
+		$add_array = $this->input->post();
975 975
 
976
-        $data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), $add_array);
977
-        if ($add_array['id'] != '') {
978
-            $data['page_title'] = 'Edit Freeswitch Server';
979
-            if ($this->form_validation->run() == FALSE) {
980
-                $data['validation_errors'] = validation_errors();
981
-                echo $data['validation_errors'];
982
-                exit;
983
-            } else {
984
-                $this->freeswitch_model->edit_fsserver($add_array, $add_array['id']);
985
-                echo json_encode(array("SUCCESS"=> " Freeswitch Server Updated Successfully!"));
986
-                exit;
987
-            }
988
-        } else {
989
-            $data['page_title'] = 'Freeswich Server';
990
-            if ($this->form_validation->run() == FALSE) {
991
-                $data['validation_errors'] = validation_errors();
992
-                echo $data['validation_errors'];
993
-                exit;
994
-            } else {
995
-                $this->freeswitch_model->add_fssever($add_array);
996
-                echo json_encode(array("SUCCESS"=> "Freeswitch Server Added Successfully!"));
997
-                exit;
998
-            }
999
-        }
1000
-        $this->load->view('view_callshop_details', $data);
1001
-    }
976
+		$data['form'] = $this->form->build_form($this->freeswitch_form->get_form_fsserver_fields(), $add_array);
977
+		if ($add_array['id'] != '') {
978
+			$data['page_title'] = 'Edit Freeswitch Server';
979
+			if ($this->form_validation->run() == FALSE) {
980
+				$data['validation_errors'] = validation_errors();
981
+				echo $data['validation_errors'];
982
+				exit;
983
+			} else {
984
+				$this->freeswitch_model->edit_fsserver($add_array, $add_array['id']);
985
+				echo json_encode(array("SUCCESS"=> " Freeswitch Server Updated Successfully!"));
986
+				exit;
987
+			}
988
+		} else {
989
+			$data['page_title'] = 'Freeswich Server';
990
+			if ($this->form_validation->run() == FALSE) {
991
+				$data['validation_errors'] = validation_errors();
992
+				echo $data['validation_errors'];
993
+				exit;
994
+			} else {
995
+				$this->freeswitch_model->add_fssever($add_array);
996
+				echo json_encode(array("SUCCESS"=> "Freeswitch Server Added Successfully!"));
997
+				exit;
998
+			}
999
+		}
1000
+		$this->load->view('view_callshop_details', $data);
1001
+	}
1002 1002
 
1003
-    function fsserver_delete($id) {
1004
-        $this->freeswitch_model->fsserver_delete($id);
1005
-        $this->session->set_flashdata('astpp_notification', 'Freeswitch Server Removed Successfully!');
1006
-        redirect(base_url() . 'freeswitch/fsserver_list/');
1007
-        exit;
1008
-    }
1003
+	function fsserver_delete($id) {
1004
+		$this->freeswitch_model->fsserver_delete($id);
1005
+		$this->session->set_flashdata('astpp_notification', 'Freeswitch Server Removed Successfully!');
1006
+		redirect(base_url() . 'freeswitch/fsserver_list/');
1007
+		exit;
1008
+	}
1009 1009
 
1010
-    function fsserver_list_search() {
1011
-        $ajax_search = $this->input->post('ajax_search', 0);
1010
+	function fsserver_list_search() {
1011
+		$ajax_search = $this->input->post('ajax_search', 0);
1012 1012
 
1013
-        if ($this->input->post('advance_search', TRUE) == 1) {
1014
-            $this->session->set_userdata('advance_search', $this->input->post('advance_search'));
1015
-            $action = $this->input->post();
1016
-            unset($action['action']);
1017
-            unset($action['advance_search']);
1018
-            $this->session->set_userdata('fsserver_list_search', $action);
1019
-        }
1020
-        if (@$ajax_search != 1) {
1021
-            redirect(base_url() . 'freeswitch/fsserver_list/');
1022
-        }
1023
-    }
1013
+		if ($this->input->post('advance_search', TRUE) == 1) {
1014
+			$this->session->set_userdata('advance_search', $this->input->post('advance_search'));
1015
+			$action = $this->input->post();
1016
+			unset($action['action']);
1017
+			unset($action['advance_search']);
1018
+			$this->session->set_userdata('fsserver_list_search', $action);
1019
+		}
1020
+		if (@$ajax_search != 1) {
1021
+			redirect(base_url() . 'freeswitch/fsserver_list/');
1022
+		}
1023
+	}
1024 1024
 
1025
-    function fsserver_list_clearsearchfilter() {
1026
-        $this->session->set_userdata('advance_search', 0);
1027
-        $this->session->set_userdata('account_search', "");
1028
-    }
1029
-    function fssipprofile_edit_validation($id,$name){
1025
+	function fsserver_list_clearsearchfilter() {
1026
+		$this->session->set_userdata('advance_search', 0);
1027
+		$this->session->set_userdata('account_search', "");
1028
+	}
1029
+	function fssipprofile_edit_validation($id,$name){
1030 1030
 	$sip_profile_data=$this->common->get_field_name('profile_data','sip_profiles',$id);
1031 1031
 	$final_data= json_decode($sip_profile_data,true);
1032 1032
 	foreach($final_data as $key=>$value){
@@ -1037,7 +1037,7 @@  discard block
 block discarded – undo
1037 1037
 	}
1038 1038
 	echo 0;
1039 1039
 	return true;
1040
-    }
1040
+	}
1041 1041
 }
1042 1042
 
1043 1043
 ?>
Please login to merge, or discard this patch.
Spacing   +153 added lines, -153 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $this->load->model('freeswitch_model');
37 37
 
38 38
         if ($this->session->userdata('user_login') == FALSE)
39
-            redirect(base_url() . '/astpp/login');
39
+            redirect(base_url().'/astpp/login');
40 40
     }
41 41
 
42 42
     function fssipdevices_add($type = "") {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
          $account_data = $this->session->userdata("accountinfo");
45 45
         $data['flag'] = 'create';
46 46
         $data['page_title'] = 'Create SIP Device';
47
-       if($account_data['type'] == '-1'  || $account_data['type'] == '1')
47
+       if ($account_data['type'] == '-1' || $account_data['type'] == '1')
48 48
        {
49 49
             $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($type), '');
50 50
             $this->load->view('view_freeswitch_add_edit', $data);
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
      $data['username'] = $this->session->userdata('user_name');
58 58
      $account_data = $this->session->userdata("accountinfo");
59 59
         $data['page_title'] = 'Create SIP Device';
60
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid),"");
61
-        if($account_data['type'] == '-1'  || $account_data['type'] == '1')
60
+        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid), "");
61
+        if ($account_data['type'] == '-1' || $account_data['type'] == '1')
62 62
         {
63 63
             $this->load->view('view_freeswitch_add_edit', $data);
64
-        }else{
64
+        } else {
65 65
             $this->load->view('view_freeswitch_customer_add_edit', $data);
66 66
         }
67 67
     }
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
         $account_data = $this->session->userdata("accountinfo");
72 72
         $where = array('id' => $edit_id);
73 73
         $account = $this->freeswitch_model->get_edited_data($edit_id);
74
-        if($account_data['type'] == '-1')
74
+        if ($account_data['type'] == '-1')
75 75
         {
76 76
 			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
77 77
 			$this->load->view('view_freeswitch_add_edit', $data);
78
-        }else{
78
+        } else {
79 79
          $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
80 80
         $this->load->view('view_freeswitch_customer_add_edit', $data);
81 81
         }
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
         $data['page_title'] = 'Edit SIP device';
88 88
         $where = array('id' => $edit_id);
89 89
         $account = $this->freeswitch_model->get_edited_data($edit_id);
90
-          if($account_data['type'] == '-1' || $account_data['type'] == '1')
90
+          if ($account_data['type'] == '-1' || $account_data['type'] == '1')
91 91
         {
92
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
92
+        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid, $edit_id), $account);
93 93
         $this->load->view('view_freeswitch_add_edit', $data);
94
-        }else{
94
+        } else {
95 95
         
96
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
96
+        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid, $edit_id), $account);
97 97
         $this->load->view('view_freeswitch_customer_add_edit', $data);
98 98
         }
99 99
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             $this->session->set_userdata('fsgateway_list_search', $action);
110 110
         }
111 111
         if (@$ajax_search != 1) {
112
-            redirect(base_url() . 'freeswitch/fsgateway/');
112
+            redirect(base_url().'freeswitch/fsgateway/');
113 113
         }
114 114
     }
115 115
     function fssipprofile_search() {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
             $this->session->set_userdata('fssipprofile_list_search', $action);
124 124
         }
125 125
         if (@$ajax_search != 1) {
126
-            redirect(base_url() . 'freeswitch/fssipprofile/');
126
+            redirect(base_url().'freeswitch/fssipprofile/');
127 127
         }
128 128
     }
129 129
     function fssipdevices_clearsearchfilter() {
@@ -140,10 +140,10 @@  discard block
 block discarded – undo
140 140
     }
141 141
     function fssipdevices_save($user_flg = false) {
142 142
         $add_array = $this->input->post();
143
-        if (!$user_flg) {
143
+        if ( ! $user_flg) {
144 144
             $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($add_array['id']), $add_array);
145 145
         } else {
146
-            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']),  $add_array);
146
+            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"], $add_array['id']), $add_array);
147 147
         }
148 148
         if ($add_array['id'] != '') {
149 149
             $data['page_title'] = 'Freeswitch SIP Devices';
@@ -171,10 +171,10 @@  discard block
 block discarded – undo
171 171
     }
172 172
     function customer_fssipdevices_save($user_flg = false) {
173 173
         $add_array = $this->input->post();      
174
-        if (!$user_flg) {
174
+        if ( ! $user_flg) {
175 175
             $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields(), $add_array);
176 176
         } else {
177
-            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
177
+            $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"], $add_array['id']), $add_array);
178 178
         }
179 179
         if ($add_array['id'] != '') {
180 180
             $data['page_title'] = 'Edit Freeswitch SIP Devices';
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
     function user_fssipdevices_save($user_flg = false) {
204 204
         $add_array = $this->input->post();
205
-        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"],$add_array['id']), $add_array);
205
+        $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($add_array["accountcode"], $add_array['id']), $add_array);
206 206
         if ($add_array['id'] != '') {
207 207
             $data['page_title'] = 'Edit Freeswitch SIP Devices';
208 208
             if ($this->form_validation->run() == FALSE) {
@@ -214,14 +214,14 @@  discard block
 block discarded – undo
214 214
                 echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
215 215
                 exit;
216 216
             }
217
-        }else{
217
+        } else {
218 218
             $data['page_title'] = 'Create Freeswitch SIP Devices';
219 219
             if ($this->form_validation->run() == FALSE) {
220 220
                 $data['validation_errors'] = validation_errors();
221 221
                 echo $data['validation_errors'];
222 222
                 exit;
223 223
             } else {
224
-		$sip_profile_id=$this->common->get_field_name('id','sip_profiles',array('name'=>'default'));
224
+		$sip_profile_id = $this->common->get_field_name('id', 'sip_profiles', array('name'=>'default'));
225 225
                 $this->freeswitch_model->add_freeswith($add_array);
226 226
                 echo json_encode(array("SUCCESS"=> "SIP Device Added Successfully!"));
227 227
                 exit;
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
             $this->session->set_userdata('fssipdevices_list_search', $action);
240 240
         }
241 241
         if (@$ajax_search != 1) {
242
-            redirect(base_url() . 'freeswitch/fssipdevices/');
242
+            redirect(base_url().'freeswitch/fssipdevices/');
243 243
         }
244 244
     }
245 245
 
@@ -267,13 +267,13 @@  discard block
 block discarded – undo
267 267
         foreach ($query as $key => $value) {
268 268
 	$path_true = base_url().'/assets/images/true.png';
269 269
 	$path_false = base_url().'/assets/images/false.png';
270
-	if($value['voicemail_enabled'] == 'true'){
271
-		$voicemail_enabled ='<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">';
272
-	}else{
273
-		$voicemail_enabled ='<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
270
+	if ($value['voicemail_enabled'] == 'true') {
271
+		$voicemail_enabled = '<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">';
272
+	} else {
273
+		$voicemail_enabled = '<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
274 274
 	}
275 275
         $json_data['rows'][] = array('cell' => array(
276
-		    '<input type="checkbox" name="chkAll" id=' . $value['id'] . ' class="ace chkRefNos" onclick="clickchkbox(' . $value['id'] . ')" value=' . $value['id'] . '><lable class="lbl"></lable>',
276
+		    '<input type="checkbox" name="chkAll" id='.$value['id'].' class="ace chkRefNos" onclick="clickchkbox('.$value['id'].')" value='.$value['id'].'><lable class="lbl"></lable>',
277 277
 		    "<a href='/freeswitch/fssipdevices_edit/".$value['id']."' style='cursor:pointer;color:#005298;' rel='facebox_medium' title='username'>".$value['username']."</a>",
278 278
 /**************************/
279 279
                     $value['password'],
@@ -281,10 +281,10 @@  discard block
 block discarded – undo
281 281
                     $this->common->get_field_name_coma_new('first_name,last_name,number', 'accounts', array('0' => $value['accountid'])),
282 282
                     $value['effective_caller_id_name'],
283 283
                     $value['effective_caller_id_number'],
284
-                     $voicemail_enabled ,
285
-                     $this->common->get_status('status', 'sip_devices',$value),
286
-                    $this->common->convert_GMT_to('','',$value['creation_date']),
287
-                    $this->common->convert_GMT_to('','',$value['last_modified_date']),                
284
+                     $voicemail_enabled,
285
+                     $this->common->get_status('status', 'sip_devices', $value),
286
+                    $this->common->convert_GMT_to('', '', $value['creation_date']),
287
+                    $this->common->convert_GMT_to('', '', $value['last_modified_date']),                
288 288
                     $this->get_action_buttons_fssipdevices($value['id'])
289 289
                     ));
290 290
         }
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
         $this->db->delete("sip_devices");
305 305
         echo TRUE;
306 306
     }
307
-    function customer_fssipdevices_delete_multiple(){
307
+    function customer_fssipdevices_delete_multiple() {
308 308
         $ids = $this->input->post("selected_ids", true);
309 309
         $where = "id IN ($ids)";
310 310
         $this->db->where($where);
@@ -316,42 +316,42 @@  discard block
 block discarded – undo
316 316
 ASTPP 3.0
317 317
 Customer side show voice mail detials
318 318
 ******/
319
-    function customer_fssipdevices_json($accountid,$entity_type='') {
319
+    function customer_fssipdevices_json($accountid, $entity_type = '') {
320 320
         $json_data = array();
321
-        $count_all = $this->freeswitch_model->get_sipdevices_list(false, $accountid,$entity_type);
321
+        $count_all = $this->freeswitch_model->get_sipdevices_list(false, $accountid, $entity_type);
322 322
         $paging_data = $this->form->load_grid_config($count_all, $_GET['rp'], $_GET['page']);
323 323
         $json_data = $paging_data["json_paging"];
324 324
         $devices_result = array();
325
-        $query = $this->freeswitch_model->get_sipdevices_list(true, $accountid,$entity_type, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
325
+        $query = $this->freeswitch_model->get_sipdevices_list(true, $accountid, $entity_type, $paging_data["paging"]["start"], $paging_data["paging"]["page_no"]);
326 326
         foreach ($query as $key => $value) {
327 327
 	$path_true = base_url().'/assets/images/true.png';
328 328
 	$path_false = base_url().'/assets/images/false.png';
329
-	$voicemail_enabled = $value['voicemail_enabled'] == 'true'? '<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">' : '<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
329
+	$voicemail_enabled = $value['voicemail_enabled'] == 'true' ? '<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">' : '<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
330 330
         $json_data['rows'][] = array('cell' => array(
331
-		    '<input type="checkbox" name="chkAll" id="'.$value['id'].'" class="ace chkRefNos" onclick="clickchkbox('.$value['id'].')" value=' .$value['id'].'><lable class="lbl"></lable>',
331
+		    '<input type="checkbox" name="chkAll" id="'.$value['id'].'" class="ace chkRefNos" onclick="clickchkbox('.$value['id'].')" value='.$value['id'].'><lable class="lbl"></lable>',
332 332
                     $value['username'],
333 333
                     $value['password'],
334 334
                     $this->common->get_field_name('name', '`sip_profiles', array('id' => $value['sip_profile_id'])),
335 335
                     $value['effective_caller_id_name'],
336 336
                     $value['effective_caller_id_number'],
337 337
                     $voicemail_enabled,
338
-                    $this->common->get_status('status', 'sip_devices',$value),
339
-                    $this->common->convert_GMT_to('','',$value['creation_date']),
340
-                    $this->common->convert_GMT_to('','',$value['last_modified_date']),
341
-                    $this->get_action_fssipdevices_buttons($value['id'], $value['accountid'],$entity_type)
338
+                    $this->common->get_status('status', 'sip_devices', $value),
339
+                    $this->common->convert_GMT_to('', '', $value['creation_date']),
340
+                    $this->common->convert_GMT_to('', '', $value['last_modified_date']),
341
+                    $this->get_action_fssipdevices_buttons($value['id'], $value['accountid'], $entity_type)
342 342
                     ));
343 343
         }//exit;
344 344
         echo json_encode($json_data);
345 345
     }
346 346
 /****************************/
347
-    function get_action_fssipdevices_buttons($id, $accountid,$entity_type='') {
347
+    function get_action_fssipdevices_buttons($id, $accountid, $entity_type = '') {
348 348
         $ret_url = '';
349
-        if ($this->session->userdata("logintype") == '0'||$this->session->userdata("logintype") == '3') {
350
-            $ret_url = '<a href="'. base_url() .'user/user_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
351
-            $ret_url .= '<a href="'. base_url() .'user/user_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
349
+        if ($this->session->userdata("logintype") == '0' || $this->session->userdata("logintype") == '3') {
350
+            $ret_url = '<a href="'.base_url().'user/user_fssipdevices_action/edit/'.$id.'/'.$accountid.'/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
351
+            $ret_url .= '<a href="'.base_url().'user/user_fssipdevices_action/delete/'.$id.'/'.$accountid.'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
352 352
         } else {
353
-            $ret_url = '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/edit/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
354
-            $ret_url .= '<a href="'. base_url() .'accounts/'.$entity_type.'_fssipdevices_action/delete/' . $id . '/' . $accountid . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
353
+            $ret_url = '<a href="'.base_url().'accounts/'.$entity_type.'_fssipdevices_action/edit/'.$id.'/'.$accountid.'/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
354
+            $ret_url .= '<a href="'.base_url().'accounts/'.$entity_type.'_fssipdevices_action/delete/'.$id.'/'.$accountid.'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
355 355
         }
356 356
         return $ret_url;
357 357
     }
@@ -359,15 +359,15 @@  discard block
 block discarded – undo
359 359
     function fssipdevices_delete($id) {
360 360
         $this->freeswitch_model->delete_freeswith_devices($id);
361 361
         $this->session->set_flashdata('astpp_notification', 'SIP Device Removed Successfully!');
362
-        redirect(base_url() . 'freeswitch/fssipdevices/');
362
+        redirect(base_url().'freeswitch/fssipdevices/');
363 363
         exit;
364 364
     }
365 365
 
366 366
     function get_action_buttons_fssipdevices($id) {
367 367
 
368 368
         $ret_url = '';
369
-        $ret_url = '<a href="'. base_url() .'freeswitch/fssipdevices_edit/' . $id . '/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
370
-        $ret_url .= '<a href="'. base_url() .'freeswitch/fssipdevices_delete/' . $id . '/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
369
+        $ret_url = '<a href="'.base_url().'freeswitch/fssipdevices_edit/'.$id.'/" class="btn btn-royelblue btn-sm"  rel="facebox_medium" title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;';
370
+        $ret_url .= '<a href="'.base_url().'freeswitch/fssipdevices_delete/'.$id.'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>';
371 371
         return $ret_url;
372 372
     }
373 373
 
@@ -385,10 +385,10 @@  discard block
 block discarded – undo
385 385
         $calls_final = array();
386 386
         $data_header = array();
387 387
         $k = 0;
388
-            $data = explode("\n",$response);
388
+            $data = explode("\n", $response);
389 389
             for ($i = 0; $i < count($data) - 2; $i++) {
390 390
                 if (trim($data[$i]) != '') {
391
-                    if (count($data_header) ==0 || substr($data[$i],0,4) == "uuid") {
391
+                    if (count($data_header) == 0 || substr($data[$i], 0, 4) == "uuid") {
392 392
                         $data_header = explode(",", $data[$i]);
393 393
                     } else {
394 394
                         $data_call = explode(",", $data[$i]);
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
         $this->session->set_userdata('advance_search', 0);
436 436
         $data['grid_fields'] = $this->freeswitch_form->build_fsgateway_list_for_admin();
437 437
         $data["grid_buttons"] = $this->freeswitch_form->build_fdgateway_grid_buttons();
438
-      	$data['form_search']=$this->form->build_serach_form($this->freeswitch_form->get_gateway_search_form());
438
+      	$data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_gateway_search_form());
439 439
         $this->load->view('view_fsgateway_list', $data);
440 440
     }
441 441
 
@@ -452,13 +452,13 @@  discard block
 block discarded – undo
452 452
         if ($query->num_rows > 0) {
453 453
             $query = $query->result_array();
454 454
             foreach ($query as $key => $query_value) {
455
-$gateway_data=array();
456
-$tmp=null;
455
+$gateway_data = array();
456
+$tmp = null;
457 457
                 foreach ($query_value as $gateway_key => $gateway_val) {
458 458
                     if ($gateway_key != "gateway_data") {
459 459
                         $gateway_data[$gateway_key] = $gateway_val;
460 460
                     } else {
461
-                        $tmp = (array) json_decode($gateway_val);
461
+                        $tmp = (array)json_decode($gateway_val);
462 462
                     }
463 463
                 }
464 464
                         $gateway_result[$key] = array_merge($gateway_data, $tmp);
@@ -486,22 +486,22 @@  discard block
 block discarded – undo
486 486
         $gateway_result = array();
487 487
         foreach ($query as $key => $query_value) {
488 488
             foreach ($query_value as $gateway_key => $gatewau_val) {
489
-  	        $gateway_data["status"] = isset($query_value["status"])?$query_value["status"]:"";
489
+  	        $gateway_data["status"] = isset($query_value["status"]) ? $query_value["status"] : "";
490 490
                 if ($gateway_key != "gateway_data") {
491 491
                     $gateway_data[$gateway_key] = $gatewau_val;
492
-                }else if($gateway_key == "status") {
492
+                } else if ($gateway_key == "status") {
493 493
                     $gateway_data[$gateway_key] = $gatewau_val;
494 494
                 } 
495 495
                  /**
496 496
                  ASTPP 3.0 
497 497
                  put one variable with the name of dialplan variable 
498 498
                  **/ 
499
-                else if($gateway_key == "dialplan_variable") {
499
+                else if ($gateway_key == "dialplan_variable") {
500 500
                     $gateway_data[$gateway_key] = $gatewau_val;
501 501
                 } 
502 502
                 /****************************************************/
503 503
                 else {
504
-                    $tmp = (array) json_decode($gatewau_val);
504
+                    $tmp = (array)json_decode($gatewau_val);
505 505
                     $gateway_result = array_merge($gateway_data, $tmp);
506 506
                 }
507 507
             }
@@ -510,9 +510,9 @@  discard block
 block discarded – undo
510 510
         ASTPP  3.0 
511 511
         put one variable with the name of dialplan variable 
512 512
         **/
513
-        if(!empty($gateway_data['dialplan_variable']) && $gateway_data['dialplan_variable'] != ''){
514
-         $gateway_result['dialplan_variable']  = $gateway_data['dialplan_variable'];
515
-         }else{
513
+        if ( ! empty($gateway_data['dialplan_variable']) && $gateway_data['dialplan_variable'] != '') {
514
+         $gateway_result['dialplan_variable'] = $gateway_data['dialplan_variable'];
515
+         } else {
516 516
          $gateway_result['dialplan_variable'] = '';
517 517
          }
518 518
          /**********************************************************************************************/
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
         $data['form'] = $this->form->build_form($this->freeswitch_form->get_gateway_form_fields(), $gateway_data);
526 526
         $insert_arr = array();
527 527
         $gateway_arr = array();
528
-        $insert_arr['dialplan_variable'] ="";
528
+        $insert_arr['dialplan_variable'] = "";
529 529
         foreach ($gateway_data as $key => $gateway_value) {
530 530
             if ($gateway_value != "") {
531 531
                 if ($key == "sip_profile_id") {
@@ -543,9 +543,9 @@  discard block
 block discarded – undo
543 543
                     $insert_arr['dialplan_variable'] = $gateway_data["dialplan_variable"];
544 544
                 }
545 545
                 /*********************************************************************/
546
-                else if($key == "status") {
546
+                else if ($key == "status") {
547 547
                     $insert_arr[$key] = $gateway_data["status"];
548
-                }  else {
548
+                } else {
549 549
                     if ($key != "id") {
550 550
                         $gateway_arr[$key] = $gateway_value;
551 551
                     }
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
                 echo $data['validation_errors'];
563 563
                 exit;
564 564
             } else {
565
-		if ( preg_match('/\s/',$insert_arr['name']) )
565
+		if (preg_match('/\s/', $insert_arr['name']))
566 566
 		{
567 567
 		  echo json_encode(array("name_error"=> "Gateway name must not have any space."));
568 568
 		  exit;
@@ -571,17 +571,17 @@  discard block
 block discarded – undo
571 571
 		ASTPP  3.0 
572 572
 		gateway last modified date
573 573
 		*/
574
-		$insert_arr['last_modified_date']=gmdate('Y-m-d H:i:s');
574
+		$insert_arr['last_modified_date'] = gmdate('Y-m-d H:i:s');
575 575
 		/*************************************************/
576 576
                 $update = $this->db->update("gateways", $insert_arr, array('id' => $gateway_data['id']));
577 577
                 if ($update) {
578 578
                     $profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
579 579
 		    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
580 580
                     $cmd = "api sofia profile ".$profile_name." killgw '".$insert_arr['name']."' ";
581
-                    $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
581
+                    $this->freeswitch_model->reload_freeswitch($cmd, $sip_ip);
582 582
 
583
-                    $cmd2 = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
584
-                    $this->freeswitch_model->reload_freeswitch($cmd2,$sip_ip);
583
+                    $cmd2 = "api sofia profile ".$profile_name." rescan reloadacl reloadxml";
584
+                    $this->freeswitch_model->reload_freeswitch($cmd2, $sip_ip);
585 585
                 }
586 586
                 echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Updated Successfully!"));
587 587
                 exit;
@@ -593,18 +593,18 @@  discard block
 block discarded – undo
593 593
                 echo $data['validation_errors'];
594 594
                 exit;
595 595
             } else {
596
-		if ( preg_match('/\s/',$insert_arr['name']) )
596
+		if (preg_match('/\s/', $insert_arr['name']))
597 597
 		{
598 598
 		  echo json_encode(array("name_error"=> "Gateway name must not have any space."));
599 599
 		  exit;
600 600
 		}
601
-        	$insert_arr['created_date']=gmdate('Y-m-d H:i:s'); 
601
+        	$insert_arr['created_date'] = gmdate('Y-m-d H:i:s'); 
602 602
                 $insert = $this->db->insert("gateways", $insert_arr);
603 603
                 if ($insert) {
604 604
                     $profile_name = $this->common->get_field_name('name', 'sip_profiles', $insert_arr['sip_profile_id']);
605 605
 		    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $insert_arr['sip_profile_id']);
606
-                    $cmd = "api sofia profile " . $profile_name . " rescan reloadacl reloadxml";
607
-                    $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
606
+                    $cmd = "api sofia profile ".$profile_name." rescan reloadacl reloadxml";
607
+                    $this->freeswitch_model->reload_freeswitch($cmd, $sip_ip);
608 608
                 }
609 609
                 echo json_encode(array("SUCCESS"=> $insert_arr['name']." Gateway Added Successfully!"));
610 610
                 exit;
@@ -619,12 +619,12 @@  discard block
 block discarded – undo
619 619
             $profile_name = $this->common->get_field_name('name', 'sip_profiles', $profile_id);
620 620
 	    $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
621 621
             $gateway_name = $this->common->get_field_name('name', 'gateways', $gateway_id);
622
-            $cmd = "api sofia profile " . $profile_name . " killgw " . $gateway_name . " reloadxml";
623
-            $this->freeswitch_model->reload_freeswitch($cmd,$sip_ip);
622
+            $cmd = "api sofia profile ".$profile_name." killgw ".$gateway_name." reloadxml";
623
+            $this->freeswitch_model->reload_freeswitch($cmd, $sip_ip);
624 624
         }
625 625
 
626 626
         $this->session->set_flashdata('astpp_notification', 'Gateway Removed Successfully!');
627
-        redirect(base_url() . 'freeswitch/fsgateway/');
627
+        redirect(base_url().'freeswitch/fsgateway/');
628 628
     }
629 629
 
630 630
     function fsgateway_delete_multiple() {
@@ -641,8 +641,8 @@  discard block
 block discarded – undo
641 641
         $this->session->set_userdata('advance_search', 0);
642 642
         $data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_list_for_admin();
643 643
         $data["grid_buttons"] = $this->freeswitch_form->build_fssipprofile_grid_buttons();
644
-	$data['form_search']=$this->form->build_serach_form($this->freeswitch_form->get_sipprofile_search_form());
645
-	$data['button_name']="Add Setting";
644
+	$data['form_search'] = $this->form->build_serach_form($this->freeswitch_form->get_sipprofile_search_form());
645
+	$data['button_name'] = "Add Setting";
646 646
 	//$data['form_search'] = $this->form->build_serach_form($this->trunk_form->get_trunk_search_form());
647 647
         $this->load->view('view_fssipprofile_list', $data);
648 648
     }
@@ -674,14 +674,14 @@  discard block
 block discarded – undo
674 674
         $query = $this->db_model->getSelect("*", "sip_profiles", $where);
675 675
         $query = $query->result_array();
676 676
         $gateway_result = array();
677
-        $i=0;
677
+        $i = 0;
678 678
         foreach ($query as $key => $query_value) {
679 679
             foreach ($query_value as $gateway_key => $gatewau_val) {
680
-	      if($gateway_key != 'id' && $gateway_key != 'name' && $gateway_key != 'sip_ip' && $gateway_key != 'sip_port'){
680
+	      if ($gateway_key != 'id' && $gateway_key != 'name' && $gateway_key != 'sip_ip' && $gateway_key != 'sip_port') {
681 681
                 if ($gateway_key != "profile_data") {
682 682
                     $gateway_data[$gateway_key] = $gatewau_val;
683 683
                 } else {
684
-                    $tmp = (array) json_decode($gatewau_val);
684
+                    $tmp = (array)json_decode($gatewau_val);
685 685
                     $gateway_result = array_merge($gateway_data, $tmp);
686 686
                 }
687 687
 	}
@@ -694,74 +694,74 @@  discard block
 block discarded – undo
694 694
 	  $json_data['rows'][] = array('cell' => array(
695 695
 	      $key,
696 696
 	      $value,
697
-	      array('<a href="/freeswitch/fssipprofile_edit/'.$edited_id.'/edit/' . $key .'/" class="btn btn-royelblue btn-sm"  title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;<a href="/freeswitch/fssipprofile_delete_params/'.$edited_id.'/' . $key .'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>')
697
+	      array('<a href="/freeswitch/fssipprofile_edit/'.$edited_id.'/edit/'.$key.'/" class="btn btn-royelblue btn-sm"  title="Edit">&nbsp;<i class="fa fa-pencil-square-o fa-fw"></i></a>&nbsp;<a href="/freeswitch/fssipprofile_delete_params/'.$edited_id.'/'.$key.'/" class="btn btn-royelblue btn-sm" title="Delete" onClick="return get_alert_msg();">&nbsp;<i class="fa fa-trash fa-fw"></i></a>')
698 698
 	      ));
699 699
   }
700 700
         echo json_encode($json_data);
701 701
     }
702
-     function fssipprofile_action($button_name,$id) {
702
+     function fssipprofile_action($button_name, $id) {
703 703
         $where = array('id' => $id);
704 704
         $query = $this->db_model->getSelect("*", "sip_profiles", $where);
705 705
         $query = $query->result_array();
706 706
         $where = array('sip_profile_id' => $id);
707
-        if($button_name == "start")
707
+        if ($button_name == "start")
708 708
         { 
709
-           $cmd = "api sofia profile " . trim($query[0]['name']) ." start"; 
709
+           $cmd = "api sofia profile ".trim($query[0]['name'])." start"; 
710 710
         }
711
-        elseif($button_name == "stop")
711
+        elseif ($button_name == "stop")
712 712
         {
713
-            $cmd= "api sofia profile stop";
713
+            $cmd = "api sofia profile stop";
714 714
         }
715
-        elseif($button_name == "reload")
715
+        elseif ($button_name == "reload")
716 716
         {
717 717
             $cmd = "api reloadxml";
718 718
         }
719
-        elseif($button_name == "rescan")
719
+        elseif ($button_name == "rescan")
720 720
         {
721
-            $cmd = "api sofia profile " . trim($query[0]['name']) . " rescan";
721
+            $cmd = "api sofia profile ".trim($query[0]['name'])." rescan";
722 722
         }
723 723
         
724 724
         $this->freeswitch_model->reload_freeswitch($cmd);
725
-	redirect(base_url() . 'freeswitch/fssipprofile/');   
725
+	redirect(base_url().'freeswitch/fssipprofile/');   
726 726
     }
727
-     function fssipprofile_add($add='') {
727
+     function fssipprofile_add($add = '') {
728 728
      
729 729
         $data['username'] = $this->session->userdata('user_name');
730 730
         $data['flag'] = 'create';
731 731
         $data['page_title'] = 'Create SIP Profile';
732 732
         $sipprofile_data = $this->input->post();
733
-         $sipprofile_data['status']=$sipprofile_data['sipstatus'];
734
-        $data['button_name']="Add Setting";
735
-        if($add == 'add')
733
+         $sipprofile_data['status'] = $sipprofile_data['sipstatus'];
734
+        $data['button_name'] = "Add Setting";
735
+        if ($add == 'add')
736 736
         {
737 737
           
738 738
 	  unset($sipprofile_data['action']);
739 739
 	   unset($sipprofile_data['sipstatus']);
740
-	  $insert_data=$sipprofile_data;
740
+	  $insert_data = $sipprofile_data;
741 741
 	  
742
-	  if($sipprofile_data['name'] == '' || $sipprofile_data['sip_ip'] =='' || $sipprofile_data['sip_port'] =='')
742
+	  if ($sipprofile_data['name'] == '' || $sipprofile_data['sip_ip'] == '' || $sipprofile_data['sip_port'] == '')
743 743
 	  {
744 744
 	      $this->session->set_flashdata('astpp_notification', 'Please enter All profile value!');
745
-	      redirect(base_url() . 'freeswitch/fssipprofile_add/');
745
+	      redirect(base_url().'freeswitch/fssipprofile_add/');
746 746
 	      exit;
747 747
 	  }
748
-	  if(preg_match('/\s/',$sipprofile_data['name']))
748
+	  if (preg_match('/\s/', $sipprofile_data['name']))
749 749
 	  {
750 750
 	    $this->session->set_flashdata('astpp_notification', 'SIP Profile name must not have any space!');
751
- 	    redirect(base_url() . 'freeswitch/fssipprofile_add/');
751
+ 	    redirect(base_url().'freeswitch/fssipprofile_add/');
752 752
  	    exit;
753 753
 	  }
754
-	  if(!preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\z/', $sipprofile_data['sip_ip']))
754
+	  if ( ! preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\z/', $sipprofile_data['sip_ip']))
755 755
 	  {
756 756
 	    $this->session->set_flashdata('astpp_notification', 'SIP IP must be proper!');
757
- 	    redirect(base_url() . 'freeswitch/fssipprofile_add/');
757
+ 	    redirect(base_url().'freeswitch/fssipprofile_add/');
758 758
  	    exit;
759 759
 	  }
760
-	  $sipprofile_data['id']='';
760
+	  $sipprofile_data['id'] = '';
761 761
 	  $check_authentication = $this->freeswitch_model->profile_authentication($sipprofile_data);
762 762
 	  if ($check_authentication->num_rows == 0) {
763 763
 	      
764
-	      $sipprofile_data['created_date']=gmdate('Y-m-d H:i:s');
764
+	      $sipprofile_data['created_date'] = gmdate('Y-m-d H:i:s');
765 765
 	     /** Version 2.1
766 766
 	      * Purpose : Set default data for new created profile
767 767
 	      **/
@@ -772,40 +772,40 @@  discard block
 block discarded – undo
772 772
 	    }
773 773
 	    else {
774 774
                     $this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
775
-		    redirect(base_url() . 'freeswitch/fssipprofile_add/');
775
+		    redirect(base_url().'freeswitch/fssipprofile_add/');
776 776
 	    }
777 777
 	    $this->session->set_flashdata('astpp_errormsg', 'SIP Profile Added Successfully!');
778
-	    redirect(base_url() . 'freeswitch/fssipprofile/');
778
+	    redirect(base_url().'freeswitch/fssipprofile/');
779 779
         }
780 780
 	
781
-        if($add == 'edit')
781
+        if ($add == 'edit')
782 782
         {
783 783
 	  $check_authentication = $this->freeswitch_model->profile_authentication($sipprofile_data);
784 784
 	    unset($sipprofile_data['action']);
785 785
 	    unset($sipprofile_data['sipstatus']);
786 786
 	    $insert_arr = $sipprofile_data;
787 787
 	        if ($check_authentication->num_rows == 0) {
788
-		    $insert_arr['last_modified_date']=gmdate("Y-m-d H:i:s");
788
+		    $insert_arr['last_modified_date'] = gmdate("Y-m-d H:i:s");
789 789
                     $update = $this->db->update("sip_profiles", $insert_arr, array('id' => $sipprofile_data['id']));
790 790
                     $this->session->set_flashdata('astpp_errormsg', $sipprofile_data['name']." SIP Profile Updated Successfully!");
791
-                    redirect(base_url() . 'freeswitch/fssipprofile/');   
791
+                    redirect(base_url().'freeswitch/fssipprofile/');   
792 792
                     exit;
793 793
                 } else {
794 794
                     $this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
795
-		    redirect(base_url() . 'freeswitch/fssipprofile/');
795
+		    redirect(base_url().'freeswitch/fssipprofile/');
796 796
                 }
797
-	  redirect(base_url() . 'freeswitch/fssipprofile/');   
797
+	  redirect(base_url().'freeswitch/fssipprofile/');   
798 798
         }
799 799
         $this->load->view('view_fssipprofile_add', $data);
800 800
     }
801 801
 
802 802
 
803
-    function fssipprofile_edit($edit_id = '',$type='',$name_prams='') {
803
+    function fssipprofile_edit($edit_id = '', $type = '', $name_prams = '') {
804 804
         $data['page_title'] = 'Edit SIP Profile';
805 805
           $sipprofile_data = $this->input->post();
806
-        if(!$edit_id)
806
+        if ( ! $edit_id)
807 807
         {
808
-	  $edit_id=$sipprofile_data['id'];
808
+	  $edit_id = $sipprofile_data['id'];
809 809
         }
810 810
         $where = array('id' => $edit_id);
811 811
         $query = $this->db_model->getSelect("*", "sip_profiles", $where);
@@ -816,45 +816,45 @@  discard block
 block discarded – undo
816 816
                 if ($gateway_key != "profile_data") {
817 817
                     $gateway_data[$gateway_key] = $gatewau_val;
818 818
                 } else {
819
-                    $tmp = (array) json_decode($gatewau_val);
819
+                    $tmp = (array)json_decode($gatewau_val);
820 820
                     $gateway_result = array_merge($gateway_data, $tmp);
821 821
                 }
822 822
             }
823 823
         }
824 824
         $data['grid_fields'] = $this->freeswitch_form->build_fssipprofile_params_list_for_admin();
825 825
         $data['edited_id'] = $edit_id;
826
-        $data['sip_name']=$query[0]['name'];
827
-	$data['status']=$query[0]['status'];
828
-	$data['sip_ip']= $query[0]['sip_ip'];
829
-	$data['sip_port']=$query[0]['sip_port'];
830
-	$data['id']=$query[0]['id'];
831
-        $data['button_name']="Add Setting";
832
-        if($type == 'edit' || isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save')
826
+        $data['sip_name'] = $query[0]['name'];
827
+	$data['status'] = $query[0]['status'];
828
+	$data['sip_ip'] = $query[0]['sip_ip'];
829
+	$data['sip_port'] = $query[0]['sip_port'];
830
+	$data['id'] = $query[0]['id'];
831
+        $data['button_name'] = "Add Setting";
832
+        if ($type == 'edit' || isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save')
833 833
         {
834
-	    if($type == 'edit')
834
+	    if ($type == 'edit')
835 835
 	    {
836
-		$data['params_name']=$name_prams;
837
-		$data['params_status']=0;
838
-		if($gateway_result[$name_prams] == "true" || $gateway_result[$name_prams] == "false")
836
+		$data['params_name'] = $name_prams;
837
+		$data['params_status'] = 0;
838
+		if ($gateway_result[$name_prams] == "true" || $gateway_result[$name_prams] == "false")
839 839
 		{
840
-		  $data['params_status']=1;
840
+		  $data['params_status'] = 1;
841 841
 		}
842
-		$data['params_value']=$gateway_result[$name_prams];
843
-		$data['button_name']="Update Setting";
842
+		$data['params_value'] = $gateway_result[$name_prams];
843
+		$data['button_name'] = "Update Setting";
844 844
 	    }
845
-	    if(isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save'){
845
+	    if (isset($sipprofile_data['type']) && $sipprofile_data['type'] == 'save') {
846 846
 		$sipprofile_data = $this->input->post();
847
-		$tmp[$sipprofile_data['params_name']]=$sipprofile_data['params_value'];
848
-		  $final_data= json_encode($tmp);
847
+		$tmp[$sipprofile_data['params_name']] = $sipprofile_data['params_value'];
848
+		  $final_data = json_encode($tmp);
849 849
 		  $insert_arr["profile_data"] = json_encode($tmp);
850 850
 		  $update = $this->db->update("sip_profiles", $insert_arr, array('id' => $edit_id));
851
-		   if($sipprofile_data['type_settings']=="add_setting"){
852
-		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Added Successfully!");
853
-                  }else{
854
-		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Updated Successfully!");
851
+		   if ($sipprofile_data['type_settings'] == "add_setting") {
852
+		    $this->session->set_flashdata('astpp_errormsg', $data['sip_name']." SIP Setting Added Successfully!");
853
+                  } else {
854
+		    $this->session->set_flashdata('astpp_errormsg', $data['sip_name']." SIP Setting Updated Successfully!");
855 855
 		    
856 856
                   }
857
-                  redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$sipprofile_data['id']);
857
+                  redirect(base_url().'freeswitch/fssipprofile_edit/'.$sipprofile_data['id']);
858 858
 		  exit;
859 859
 
860 860
 	    }
@@ -875,19 +875,19 @@  discard block
 block discarded – undo
875 875
                 if ($gateway_key != "profile_data") {
876 876
                     $gateway_data[$gateway_key] = $gatewau_val;
877 877
                 } else {
878
-                    $tmp = (array) json_decode($gatewau_val);
878
+                    $tmp = (array)json_decode($gatewau_val);
879 879
                     $gateway_result = array_merge($gateway_data, $tmp);
880 880
                 }
881 881
             }
882 882
         }
883
-        $tmp[$sipprofile_data['params_name']]=$sipprofile_data['params_value'];
884
-	$final_data= json_encode($tmp);
883
+        $tmp[$sipprofile_data['params_name']] = $sipprofile_data['params_value'];
884
+	$final_data = json_encode($tmp);
885 885
 	$insert_arr["profile_data"] = json_encode($tmp);
886 886
 	$update = $this->db->update("sip_profiles", $insert_arr, array('id' => $id));
887 887
 	$this->load->view('view_fssipprofile_edit', $data);
888 888
     }
889 889
     
890
-    function fssipprofile_delete_params($id,$name) {
890
+    function fssipprofile_delete_params($id, $name) {
891 891
 	$where = array('id' => $id);
892 892
         $query = $this->db_model->getSelect("*", "sip_profiles", $where);
893 893
         $query = $query->result_array();
@@ -897,18 +897,18 @@  discard block
 block discarded – undo
897 897
                 if ($gateway_key != "profile_data") {
898 898
                     $gateway_data[$gateway_key] = $gatewau_val;
899 899
                 } else {
900
-                    $tmp = (array) json_decode($gatewau_val);
900
+                    $tmp = (array)json_decode($gatewau_val);
901 901
                     $gateway_result = array_merge($gateway_data, $tmp);
902 902
                 }
903 903
             }
904 904
         }
905
-	if(isset($tmp[$name])){
905
+	if (isset($tmp[$name])) {
906 906
 	  unset($tmp[$name]);
907 907
 	}
908 908
 	$insert_arr["profile_data"] = json_encode($tmp);
909 909
 	$update = $this->db->update("sip_profiles", $insert_arr, array('id' => $id));
910 910
         $this->session->set_flashdata('astpp_notification', $name.' SIP Setting Removed Successfully!');
911
-        redirect(base_url() . 'freeswitch/fssipprofile_edit/'.$id);
911
+        redirect(base_url().'freeswitch/fssipprofile_edit/'.$id);
912 912
     }
913 913
     
914 914
     function fssipprofile_delete($profile_id) {
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
         $sip_ip = $this->common->get_field_name('sip_ip', 'sip_profiles', $profile_id);
917 917
 	$delete = $this->db_model->delete("sip_profiles", array("id" => $profile_id));
918 918
         $this->session->set_flashdata('astpp_notification', 'SIP Profile Removed Successfully!');
919
-        redirect(base_url() . 'freeswitch/fssipprofile/');
919
+        redirect(base_url().'freeswitch/fssipprofile/');
920 920
     }
921 921
 
922 922
     function fsserver_list() {
@@ -1003,7 +1003,7 @@  discard block
 block discarded – undo
1003 1003
     function fsserver_delete($id) {
1004 1004
         $this->freeswitch_model->fsserver_delete($id);
1005 1005
         $this->session->set_flashdata('astpp_notification', 'Freeswitch Server Removed Successfully!');
1006
-        redirect(base_url() . 'freeswitch/fsserver_list/');
1006
+        redirect(base_url().'freeswitch/fsserver_list/');
1007 1007
         exit;
1008 1008
     }
1009 1009
 
@@ -1018,7 +1018,7 @@  discard block
 block discarded – undo
1018 1018
             $this->session->set_userdata('fsserver_list_search', $action);
1019 1019
         }
1020 1020
         if (@$ajax_search != 1) {
1021
-            redirect(base_url() . 'freeswitch/fsserver_list/');
1021
+            redirect(base_url().'freeswitch/fsserver_list/');
1022 1022
         }
1023 1023
     }
1024 1024
 
@@ -1026,11 +1026,11 @@  discard block
 block discarded – undo
1026 1026
         $this->session->set_userdata('advance_search', 0);
1027 1027
         $this->session->set_userdata('account_search', "");
1028 1028
     }
1029
-    function fssipprofile_edit_validation($id,$name){
1030
-	$sip_profile_data=$this->common->get_field_name('profile_data','sip_profiles',$id);
1031
-	$final_data= json_decode($sip_profile_data,true);
1032
-	foreach($final_data as $key=>$value){
1033
-		if($key == $name){
1029
+    function fssipprofile_edit_validation($id, $name) {
1030
+	$sip_profile_data = $this->common->get_field_name('profile_data', 'sip_profiles', $id);
1031
+	$final_data = json_decode($sip_profile_data, true);
1032
+	foreach ($final_data as $key=>$value) {
1033
+		if ($key == $name) {
1034 1034
 			echo 1;
1035 1035
 			return true;
1036 1036
 		}
Please login to merge, or discard this patch.
Braces   +16 added lines, -19 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@  discard block
 block discarded – undo
35 35
         $this->load->library('freeswitch_lib');
36 36
         $this->load->model('freeswitch_model');
37 37
 
38
-        if ($this->session->userdata('user_login') == FALSE)
39
-            redirect(base_url() . '/astpp/login');
38
+        if ($this->session->userdata('user_login') == FALSE) {
39
+                    redirect(base_url() . '/astpp/login');
40
+        }
40 41
     }
41 42
 
42 43
     function fssipdevices_add($type = "") {
@@ -61,7 +62,7 @@  discard block
 block discarded – undo
61 62
         if($account_data['type'] == '-1'  || $account_data['type'] == '1')
62 63
         {
63 64
             $this->load->view('view_freeswitch_add_edit', $data);
64
-        }else{
65
+        } else{
65 66
             $this->load->view('view_freeswitch_customer_add_edit', $data);
66 67
         }
67 68
     }
@@ -75,7 +76,7 @@  discard block
 block discarded – undo
75 76
         {
76 77
 			$data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
77 78
 			$this->load->view('view_freeswitch_add_edit', $data);
78
-        }else{
79
+        } else{
79 80
          $data['form'] = $this->form->build_form($this->freeswitch_form->get_freeswith_form_fields($edit_id), $account);
80 81
         $this->load->view('view_freeswitch_customer_add_edit', $data);
81 82
         }
@@ -91,7 +92,7 @@  discard block
 block discarded – undo
91 92
         {
92 93
         $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
93 94
         $this->load->view('view_freeswitch_add_edit', $data);
94
-        }else{
95
+        } else{
95 96
         
96 97
         $data['form'] = $this->form->build_form($this->freeswitch_form->fsdevice_form_fields_for_customer($accountid,$edit_id), $account);
97 98
         $this->load->view('view_freeswitch_customer_add_edit', $data);
@@ -214,7 +215,7 @@  discard block
 block discarded – undo
214 215
                 echo json_encode(array("SUCCESS"=> "SIP Device Updated Successfully!"));
215 216
                 exit;
216 217
             }
217
-        }else{
218
+        } else{
218 219
             $data['page_title'] = 'Create Freeswitch SIP Devices';
219 220
             if ($this->form_validation->run() == FALSE) {
220 221
                 $data['validation_errors'] = validation_errors();
@@ -269,7 +270,7 @@  discard block
 block discarded – undo
269 270
 	$path_false = base_url().'/assets/images/false.png';
270 271
 	if($value['voicemail_enabled'] == 'true'){
271 272
 		$voicemail_enabled ='<img src='.$path_true.' style="height:20px;width:20px;" title="Enable">';
272
-	}else{
273
+	} else{
273 274
 		$voicemail_enabled ='<img src='.$path_false.' style="height:20px;width:20px;" title="Disable">';
274 275
 	}
275 276
         $json_data['rows'][] = array('cell' => array(
@@ -489,7 +490,7 @@  discard block
 block discarded – undo
489 490
   	        $gateway_data["status"] = isset($query_value["status"])?$query_value["status"]:"";
490 491
                 if ($gateway_key != "gateway_data") {
491 492
                     $gateway_data[$gateway_key] = $gatewau_val;
492
-                }else if($gateway_key == "status") {
493
+                } else if($gateway_key == "status") {
493 494
                     $gateway_data[$gateway_key] = $gatewau_val;
494 495
                 } 
495 496
                  /**
@@ -512,7 +513,7 @@  discard block
 block discarded – undo
512 513
         **/
513 514
         if(!empty($gateway_data['dialplan_variable']) && $gateway_data['dialplan_variable'] != ''){
514 515
          $gateway_result['dialplan_variable']  = $gateway_data['dialplan_variable'];
515
-         }else{
516
+         } else{
516 517
          $gateway_result['dialplan_variable'] = '';
517 518
          }
518 519
          /**********************************************************************************************/
@@ -545,7 +546,7 @@  discard block
 block discarded – undo
545 546
                 /*********************************************************************/
546 547
                 else if($key == "status") {
547 548
                     $insert_arr[$key] = $gateway_data["status"];
548
-                }  else {
549
+                } else {
549 550
                     if ($key != "id") {
550 551
                         $gateway_arr[$key] = $gateway_value;
551 552
                     }
@@ -707,16 +708,13 @@  discard block
 block discarded – undo
707 708
         if($button_name == "start")
708 709
         { 
709 710
            $cmd = "api sofia profile " . trim($query[0]['name']) ." start"; 
710
-        }
711
-        elseif($button_name == "stop")
711
+        } elseif($button_name == "stop")
712 712
         {
713 713
             $cmd= "api sofia profile stop";
714
-        }
715
-        elseif($button_name == "reload")
714
+        } elseif($button_name == "reload")
716 715
         {
717 716
             $cmd = "api reloadxml";
718
-        }
719
-        elseif($button_name == "rescan")
717
+        } elseif($button_name == "rescan")
720 718
         {
721 719
             $cmd = "api sofia profile " . trim($query[0]['name']) . " rescan";
722 720
         }
@@ -769,8 +767,7 @@  discard block
 block discarded – undo
769 767
 	      /**====================================================================*/
770 768
 	      $insert = $this->db->insert("sip_profiles", $sipprofile_data);
771 769
 
772
-	    }
773
-	    else {
770
+	    } else {
774 771
                     $this->session->set_flashdata('astpp_notification', 'Duplicate SIP IP OR Port found it must be unique!');
775 772
 		    redirect(base_url() . 'freeswitch/fssipprofile_add/');
776 773
 	    }
@@ -850,7 +847,7 @@  discard block
 block discarded – undo
850 847
 		  $update = $this->db->update("sip_profiles", $insert_arr, array('id' => $edit_id));
851 848
 		   if($sipprofile_data['type_settings']=="add_setting"){
852 849
 		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Added Successfully!");
853
-                  }else{
850
+                  } else{
854 851
 		    $this->session->set_flashdata('astpp_errormsg',$data['sip_name']. " SIP Setting Updated Successfully!");
855 852
 		    
856 853
                   }
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/libraries/freeswitch_form.php 3 patches
Indentation   +395 added lines, -395 removed lines patch added patch discarded remove patch
@@ -23,480 +23,480 @@  discard block
 block discarded – undo
23 23
 ###############################################################################
24 24
 
25 25
 if (!defined('BASEPATH'))
26
-    exit('No direct script access allowed');
26
+	exit('No direct script access allowed');
27 27
 
28 28
 class Freeswitch_form {
29 29
 
30
-    function __construct() {
31
-        $this->CI = & get_instance();
32
-    }
30
+	function __construct() {
31
+		$this->CI = & get_instance();
32
+	}
33 33
 
34
-    function get_freeswith_form_fields($id=false) {
34
+	function get_freeswith_form_fields($id=false) {
35 35
 	$log_type = $this->CI->session->userdata("logintype");
36 36
 	if($log_type == 0  || $log_type == 3 || $log_type == 1){
37
-	      $sip_pro=null;
37
+		  $sip_pro=null;
38 38
 	}
39 39
 	else{
40
-	      $sip_pro=array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
40
+		  $sip_pro=array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
41 41
 
42 42
 	}  
43 43
 	$val=$id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
44 44
 	  $uname_user = $this->CI->common->find_uniq_rendno('10', '', '');
45
-        $password = $this->CI->common->generate_password();
46
-        /*Edit functionality*/
47
-        $form['forms'] = array(base_url() . 'freeswitch/fssipdevices_save/', array("id" => "sipdevices_form", "name" => "sipdevices_form"));
48
-        $form['Device Information'] = array(
49
-            array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
50
-             array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_number  fa fa-refresh"></i>'),
51
-            array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'value'=>$password ,'id'=>'password1','class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'), 
45
+		$password = $this->CI->common->generate_password();
46
+		/*Edit functionality*/
47
+		$form['forms'] = array(base_url() . 'freeswitch/fssipdevices_save/', array("id" => "sipdevices_form", "name" => "sipdevices_form"));
48
+		$form['Device Information'] = array(
49
+			array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
50
+			 array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_number  fa fa-refresh"></i>'),
51
+			array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'value'=>$password ,'id'=>'password1','class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'), 
52 52
 			array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
53
-            array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
54
-            array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
55
-            array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
53
+			array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
54
+			array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
55
+			array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
56 56
 	   $sip_pro,
57
-        );
57
+		);
58 58
 /******
59 59
 ASTPP  3.0 
60 60
 Voicemail add edit
61 61
 ******/
62 62
 		
63
-        $form['Voicemail Options'] = array(
64
-            array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
63
+		$form['Voicemail Options'] = array(
64
+			array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
65 65
             
66 66
 			array('Password', 'INPUT', array('name' => 'voicemail_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
67 67
 			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
68 68
             
69
-            array('Attach File', 'voicemail_attach_file', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
69
+			array('Attach File', 'voicemail_attach_file', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
70 70
             
71 71
             
72
-            array('Local After Email', 'vm_keep_local_after_email', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
72
+			array('Local After Email', 'vm_keep_local_after_email', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
73 73
             
74 74
             
75 75
             
76
-            array('Send all Message', 'vm_send_all_message', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
76
+			array('Send all Message', 'vm_send_all_message', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
77 77
 
78 78
 
79
-        );
79
+		);
80 80
 /**************************/
81
-        $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\')');
82
-        $form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
81
+		$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\')');
82
+		$form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
83 83
 //         echo "<pre>";print_r($form);exit; 
84
-        return $form;
85
-    }
84
+		return $form;
85
+	}
86 86
 
87
-    function get_freeswith_search_form() {
88
-        $form['forms'] = array("", array('id' => "freeswith_search"));
89
-        $form['Search'] = array(
87
+	function get_freeswith_search_form() {
88
+		$form['forms'] = array("", array('id' => "freeswith_search"));
89
+		$form['Search'] = array(
90 90
             
91
-             array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
92
-            array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
93
-            array('Gateway', 'gateway_id', 'SELECT', '', '', 'tOOL TIP', 'Please select gateway first', 'id', 'name', 'gateways', 'build_dropdown','where_arr', ''), 
94
-            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
91
+			 array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
92
+			array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
93
+			array('Gateway', 'gateway_id', 'SELECT', '', '', 'tOOL TIP', 'Please select gateway first', 'id', 'name', 'gateways', 'build_dropdown','where_arr', ''), 
94
+			array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
95 95
 	 array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status', '', ''),
96 96
 	array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
97
-        $form['button_search'] = array('name' => 'action', 'id' => "freeswith_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
98
-        $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');
99
-        return $form;
100
-    }
101
-
102
-      function get_sipdevices_search_form_user() {
103
-        $form['forms'] = array("", array('id' => "sipdevices_search"));
104
-        $form['Search'] = array(
105
-            array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20',  'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
106
-            array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
107
-	    array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
108
-            array('', 'HIDDEN', 'advance_search', '1', '', '', ''),
97
+		$form['button_search'] = array('name' => 'action', 'id' => "freeswith_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
98
+		$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');
99
+		return $form;
100
+	}
101
+
102
+	  function get_sipdevices_search_form_user() {
103
+		$form['forms'] = array("", array('id' => "sipdevices_search"));
104
+		$form['Search'] = array(
105
+			array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20',  'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
106
+			array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
107
+		array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
108
+			array('', 'HIDDEN', 'advance_search', '1', '', '', ''),
109 109
         
110 110
 	
111
-        );
112
-        $form['button_search'] = array('name' => 'action', 'id' => "sipdevices_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
113
-        $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');
114
-        return $form;
115
-    }
111
+		);
112
+		$form['button_search'] = array('name' => 'action', 'id' => "sipdevices_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
113
+		$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');
114
+		return $form;
115
+	}
116 116
     
117
-    function get_gateway_search_form() {
118
-        $form['forms'] = array("", array('id' => "freeswith_search"));
119
-        $form['Search'] = array(
117
+	function get_gateway_search_form() {
118
+		$form['forms'] = array("", array('id' => "freeswith_search"));
119
+		$form['Search'] = array(
120 120
             
121
-            array('Name', 'INPUT', array('name' => 'name[name]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'name[name-string]', '', '', '', 'search_string_type', ''),
121
+			array('Name', 'INPUT', array('name' => 'name[name]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'name[name-string]', '', '', '', 'search_string_type', ''),
122 122
 //             array('Gateway Name', 'id', 'SELECT', '', '', 'tOOL TIP', 'Please select gateway first', 'id', 'name', 'gateways', 'build_dropdown','where_arr', ''), 
123
-            array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
124
-           // array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'maxlength' => '15', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
123
+			array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
124
+		   // array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'maxlength' => '15', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
125 125
             
126
-            array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),
127
-           // array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
128
-            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
129
-            array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
130
-        $form['button_search'] = array('name' => 'action', 'id' => "fsgateway_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
131
-        $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');
132
-        return $form;
133
-    }
134
-    function get_sipprofile_search_form(){
126
+			array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),
127
+		   // array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
128
+			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
129
+			array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
130
+		$form['button_search'] = array('name' => 'action', 'id' => "fsgateway_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
131
+		$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');
132
+		return $form;
133
+	}
134
+	function get_sipprofile_search_form(){
135 135
     
136
-       $form['forms'] = array("", array('id' => "freeswitch_search"));
137
-        $form['Search'] = array(
136
+	   $form['forms'] = array("", array('id' => "freeswitch_search"));
137
+		$form['Search'] = array(
138 138
             
139
-             array('Name', 'INPUT', array('name' => 'name[name]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'name[name-string]', '', '', '', 'search_string_type', ''),
140
-             array('SIP IP', 'INPUT', array('name' => 'sip_ip[sip_ip]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'sip_ip[sip_ip-string]', '', '', '', 'search_string_type', ''),
141
-             array('SIP Port', 'INPUT', array('name' => 'sip_port[sip_port]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'sip_port[sip_port-string]', '', '', '', 'search_string_type', ''),
139
+			 array('Name', 'INPUT', array('name' => 'name[name]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'name[name-string]', '', '', '', 'search_string_type', ''),
140
+			 array('SIP IP', 'INPUT', array('name' => 'sip_ip[sip_ip]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'sip_ip[sip_ip-string]', '', '', '', 'search_string_type', ''),
141
+			 array('SIP Port', 'INPUT', array('name' => 'sip_port[sip_port]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'sip_port[sip_port-string]', '', '', '', 'search_string_type', ''),
142 142
              
143
-             array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),  
144
-            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
145
-            array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
146
-        $form['button_search'] = array('name' => 'action', 'id' => "fssipprofile_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
147
-        $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');
148
-        return $form;         
143
+			 array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),  
144
+			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
145
+			array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
146
+		$form['button_search'] = array('name' => 'action', 'id' => "fssipprofile_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
147
+		$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');
148
+		return $form;         
149 149
     
150
-    }
151
-    function get_sipdevice_search_form() {
152
-        $form['forms'] = array("", array('id' => "freeswith_search"));
153
-        $form['Search'] = array(
150
+	}
151
+	function get_sipdevice_search_form() {
152
+		$form['forms'] = array("", array('id' => "freeswith_search"));
153
+		$form['Search'] = array(
154 154
             
155
-            array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
156
-            array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
157
-            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"GLOBAL", "deleted" => "0")),
158
-            array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),  
159
-            //array('Voicemail', 'vm-enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_voicemail_status'),
160
-            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
161
-        $form['button_search'] = array('name' => 'action', 'id' => "fssipdevice_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
162
-        $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');
163
-        return $form;
164
-    }
165
-    /*
155
+			array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
156
+			array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
157
+			array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"GLOBAL", "deleted" => "0")),
158
+			array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),  
159
+			//array('Voicemail', 'vm-enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_voicemail_status'),
160
+			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
161
+		$form['button_search'] = array('name' => 'action', 'id' => "fssipdevice_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
162
+		$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');
163
+		return $form;
164
+	}
165
+	/*
166 166
     ASTPP  3.0
167 167
     Changes in gried size
168 168
     */
169
-    function build_system_list_for_admin() {
170
-        $grid_field_arr = json_encode(array(
171
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "50", "", "", "", "","","false","center"),
172
-            array("User Name", "100", "username", "", "", "","","true","center"),
173
-            array("Password", "100", "password", "", "", "","","true","center"),
174
-            array("SIP Profile", "100", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
175
-            array("Account", "150", "accountid", "first_name,last_name,number", "accounts", "build_concat_string","","true","center"),
176
-            array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
177
-            array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
178
-            array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),	
179
-            array("Status", "100", "status", "status", "sip_devies", "get_status","","true","center"),
180
-            array("Created Date", "130", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
181
-            array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
182
-            array("Action", "107", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipdevices_edit/", "mode" => "single","layout"=>"medium"),
183
-                    "DELETE" => array("url" => "/freeswitch/fssipdevices_delete/", "mode" => "single")))
184
-                ));
185
-        return $grid_field_arr;
186
-    }
187
-    /*********************************/
188
-
189
-
190
-    function build_grid_buttons() {
191
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipdevices_add/", "popup","medium"),
169
+	function build_system_list_for_admin() {
170
+		$grid_field_arr = json_encode(array(
171
+		array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "50", "", "", "", "","","false","center"),
172
+			array("User Name", "100", "username", "", "", "","","true","center"),
173
+			array("Password", "100", "password", "", "", "","","true","center"),
174
+			array("SIP Profile", "100", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
175
+			array("Account", "150", "accountid", "first_name,last_name,number", "accounts", "build_concat_string","","true","center"),
176
+			array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
177
+			array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
178
+			array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),	
179
+			array("Status", "100", "status", "status", "sip_devies", "get_status","","true","center"),
180
+			array("Created Date", "130", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
181
+			array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
182
+			array("Action", "107", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipdevices_edit/", "mode" => "single","layout"=>"medium"),
183
+					"DELETE" => array("url" => "/freeswitch/fssipdevices_delete/", "mode" => "single")))
184
+				));
185
+		return $grid_field_arr;
186
+	}
187
+	/*********************************/
188
+
189
+
190
+	function build_grid_buttons() {
191
+		$buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipdevices_add/", "popup","medium"),
192 192
 			array("Delete",  "btn btn-line-danger","fa fa-times-circle fa-lg",  "button_action", "/freeswitch/fssipdevices_delete_multiple/")   
193
-                        ));
194
-        return $buttons_json;
195
-    }
193
+						));
194
+		return $buttons_json;
195
+	}
196 196
     
197
-    function fsdevices_build_grid_buttons($accountid) {
198
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_add/$accountid/", "popup","medium"),
199
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_delete_multiple/")
200
-            ));
201
-        return $buttons_json;
202
-    }
203
-
204
-    function get_gateway_form_fields() {
205
-
206
-        $form['forms'] = array(base_url() . 'freeswitch/fsgateway_save/', array("id" => "gateway_form", "name" => "gateway_form"));
207
-        $form['Basic Information'] = array(
208
-            array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
209
-            array('Name', 'INPUT', array('name' => 'name', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Gateway Name'),
210
-            array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', '', 'id', 'name', 'sip_profiles', 'build_dropdown', '', ''),
211
-            array('Username', 'INPUT', array('name' => 'username', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter user name'),
212
-           array('Password', 'INPUT', array('name' => 'password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter Password'),
213
-            array('Proxy', 'INPUT', array('name' => 'proxy', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', ''),
214
-            array('Outbound-<br/>Proxy', 'INPUT', array('name' => 'outbound-proxy', 'size' => '20',  'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''),
197
+	function fsdevices_build_grid_buttons($accountid) {
198
+		$buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_add/$accountid/", "popup","medium"),
199
+		array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_delete_multiple/")
200
+			));
201
+		return $buttons_json;
202
+	}
203
+
204
+	function get_gateway_form_fields() {
205
+
206
+		$form['forms'] = array(base_url() . 'freeswitch/fsgateway_save/', array("id" => "gateway_form", "name" => "gateway_form"));
207
+		$form['Basic Information'] = array(
208
+			array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
209
+			array('Name', 'INPUT', array('name' => 'name', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Gateway Name'),
210
+			array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', '', 'id', 'name', 'sip_profiles', 'build_dropdown', '', ''),
211
+			array('Username', 'INPUT', array('name' => 'username', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter user name'),
212
+		   array('Password', 'INPUT', array('name' => 'password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter Password'),
213
+			array('Proxy', 'INPUT', array('name' => 'proxy', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', ''),
214
+			array('Outbound-<br/>Proxy', 'INPUT', array('name' => 'outbound-proxy', 'size' => '20',  'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''),
215 215
 			array('Register', array('name' => 'register', 'class' => 'add_settings'), 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
216
-            array('Caller-id-in-from', array('name' => 'caller-id-in-from', 'class' => 'add_settings'), 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
217
-                array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
216
+			array('Caller-id-in-from', array('name' => 'caller-id-in-from', 'class' => 'add_settings'), 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
217
+				array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
218 218
             
219
-        );
220
-        $form['Optional Information'] = array(
221
-            array('From- Domain', 'INPUT', array('name' => 'from_domain', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
222
-            array('From User', 'INPUT', array('name' => 'from_user', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
223
-            array('Realm', 'INPUT', array('name' => 'realm', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
224
-            array('Extension', 'INPUT', array('name' => 'extension', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
225
-            array('Expire Seconds', 'INPUT', array('name' => 'expire-seconds', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
226
-            array('Reg-<br/>Transport', 'INPUT', array('name' => 'register-transport', 'size' => '20','class' => "text field medium"), '', 'tOOL TIP', ''),
227
-            array('Contact Params', 'INPUT', array('name' => 'contact-params', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
228
-            array('Ping', 'INPUT', array('name' => 'ping', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
229
-            array('Retry-<br/>Seconds', 'INPUT', array('name' => 'retry-seconds', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
230
-            array('Register-<br/>Proxy', 'INPUT', array('name' => 'register-proxy', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
231
-            array('Channel', 'INPUT', array('name' => 'channel', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
232
-               /**
219
+		);
220
+		$form['Optional Information'] = array(
221
+			array('From- Domain', 'INPUT', array('name' => 'from_domain', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
222
+			array('From User', 'INPUT', array('name' => 'from_user', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
223
+			array('Realm', 'INPUT', array('name' => 'realm', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
224
+			array('Extension', 'INPUT', array('name' => 'extension', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
225
+			array('Expire Seconds', 'INPUT', array('name' => 'expire-seconds', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
226
+			array('Reg-<br/>Transport', 'INPUT', array('name' => 'register-transport', 'size' => '20','class' => "text field medium"), '', 'tOOL TIP', ''),
227
+			array('Contact Params', 'INPUT', array('name' => 'contact-params', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
228
+			array('Ping', 'INPUT', array('name' => 'ping', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
229
+			array('Retry-<br/>Seconds', 'INPUT', array('name' => 'retry-seconds', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
230
+			array('Register-<br/>Proxy', 'INPUT', array('name' => 'register-proxy', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
231
+			array('Channel', 'INPUT', array('name' => 'channel', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
232
+			   /**
233 233
                ASTPP  3.0 
234 234
                               put one variable with the name of dialplan variable 
235
-              **/ 
236
-              array('Dialplan Variable', 'TEXTAREA', array('name' => 'dialplan_variable', 'size' => '20','cols'=>'10','rows'=>'5', 'class' => "col_md-5 form-control", 'style'=>"width: 200px; height: 100px;font-family: Open sans,sans-serif !important;"), '', 'tOOL TIP', ''),
237
-             /*********************************************************************************************************/
238
-        );
235
+			    **/ 
236
+			  array('Dialplan Variable', 'TEXTAREA', array('name' => 'dialplan_variable', 'size' => '20','cols'=>'10','rows'=>'5', 'class' => "col_md-5 form-control", 'style'=>"width: 200px; height: 100px;font-family: Open sans,sans-serif !important;"), '', 'tOOL TIP', ''),
237
+			 /*********************************************************************************************************/
238
+		);
239 239
 
240
-        $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\')');
241
-        $form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
240
+		$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\')');
241
+		$form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
242 242
 
243
-        return $form;
244
-    }
243
+		return $form;
244
+	}
245 245
 
246
-    /*
246
+	/*
247 247
     ASTPP  3.0 
248 248
      changes in grid size
249 249
     */
250
-    function build_fsgateway_list_for_admin() {
251
-        // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
252
-        $grid_field_arr = json_encode(array(
253
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
250
+	function build_fsgateway_list_for_admin() {
251
+		// array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
252
+		$grid_field_arr = json_encode(array(
253
+		array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
254 254
 /**
255 255
 ASTPP  3.0 
256 256
 For Gateway Edit on Gateway name
257 257
 **/
258
-            array("Name", "140", "name", "", "", "","EDITABLE","true","center"),
258
+			array("Name", "140", "name", "", "", "","EDITABLE","true","center"),
259 259
 /**********************************/
260
-            array("SIP Profile", "115", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
261
-            array("Username", "140", "username", "", "", "","","true","center"),
260
+			array("SIP Profile", "115", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
261
+			array("Username", "140", "username", "", "", "","","true","center"),
262 262
 //             array("Password", "181", "password", "", "", ""),
263
-            array("Proxy", "145", "proxy", "", "", "","","true","center"),
264
-            array("Register", "120", "register", "register", "register", "convert_to_ucfirst","","true","center"),
265
-            array("Caller-Id-In-Form", "130", "caller-id-in-from", "caller-id-in-from", "caller-id-in-from", "convert_to_ucfirst","","true","center"),
266
-             /*
263
+			array("Proxy", "145", "proxy", "", "", "","","true","center"),
264
+			array("Register", "120", "register", "register", "register", "convert_to_ucfirst","","true","center"),
265
+			array("Caller-Id-In-Form", "130", "caller-id-in-from", "caller-id-in-from", "caller-id-in-from", "convert_to_ucfirst","","true","center"),
266
+			 /*
267 267
             ASTPP  3.0 
268 268
              creation field show in grid
269 269
             */
270
-            array("Status", "110", "status", "status", "gateways", "get_status","","true","center"),
271
-            array("Created Date", "100", "created_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
272
-             array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
273
-            /********************************************************************/
274
-           /*
270
+			array("Status", "110", "status", "status", "gateways", "get_status","","true","center"),
271
+			array("Created Date", "100", "created_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
272
+			 array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
273
+			/********************************************************************/
274
+		   /*
275 275
             ASTPP  3.0 
276 276
             
277 277
             status show active or inactive
278 278
             */
279 279
            
280
-            /******************************************/
281
-            array("Action", "106", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsgateway_edit/", "mode" => "popup","layout"=>"medium"),
282
-                    "DELETE" => array("url" => "/freeswitch/fsgateway_delete/", "mode" => "single")))
283
-                ));
284
-        return $grid_field_arr;
285
-    }
286
-    /******************************************************/
287
-
288
-    function build_fdgateway_grid_buttons() {
289
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsgateway_add/", "popup","medium"),
290
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/fsgateway_delete_multiple/")
291
-            ));
292
-        return $buttons_json;
293
-    }
294
-
295
-    function get_sipprofile_form_fields() {
296
-        $form['forms'] = array(base_url() . 'freeswitch/fssipprofile_save/', array("id" => "fssipprofile_form", "name" => "fssipprofile_form"));
297
-        $form['Basic Information'] = array(
298
-            array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
299
-            array('Profile name', 'INPUT', array('name' => 'name', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Name'),
300
-            array('sip-ip', 'INPUT', array('name' => 'sip_ip', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP IP Name'),
301
-            array('sip-port', 'INPUT', array('name' => 'sip_port', 'size' => '20', 'value' => '5060',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP Port'),
302
-            array('rtp-ip', 'INPUT', array('name' => 'rtp_ip', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
303
-            array('Dial Plan', 'INPUT', array('name' => 'dialplan', 'size' => '20', 'value' => 'XML',  'class' => "text field medium"), '', 'tOOL TIP', ''),
304
-            array('user-agent-string', 'INPUT', array('name' => 'user-agent-string', 'size' => '20', 'value' => 'ASTPP',  'class' => "text field medium"), '', 'tOOL TIP', ''),
305
-            array('debug', 'INPUT', array('name' => 'debug', 'size' => '20', 'value' => '0',  'class' => "text field medium"), '', 'tOOL TIP', ''),
306
-            array('sip-trace', 'sip-trace', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_drp_option'),
307
-            array('tls', 'tls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
308
-            array('inbound-reg-force-matching-username', 'inbound-reg-force-matching-username', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
309
-            array('disable-transcoding', 'disable-transcoding', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
310
-            array('all-reg-options-ping', 'all-reg-options-ping', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
311
-            array('unregister-on-options-fail', 'unregister-on-options-fail', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
312
-            array('log-auth-failures', 'log-auth-failures', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
313
-	    array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
314
-        );
315
-
316
-        $form['Others Information'] = array(
317
-            array('inbound-bypass-media', 'inbound-bypass-media', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
318
-            array('inbound-proxy-media', 'inbound-proxy-media', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
319
-            array('disable-transfer', 'disable-transfer', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
320
-            array('enable-100rel', 'enable-100rel', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
321
-            array('rtp-timeout-sec', 'INPUT', array('name' => 'rtp-timeout-sec', 'size' => '20', 'value' => '60', 'class' => "text field medium"), '', 'tOOL TIP', ''),
322
-            array('dtmf-duration', 'INPUT', array('name' => 'dtmf-duration', 'size' => '20', 'value' => '2000', 'class' => "text field medium"), '', 'tOOL TIP', ''),
323
-            array('manual-redirect','manual-redirect', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
324
-            array('aggressive-nat-detection', 'aggressive-nat-detection', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
325
-            array('enable-Timer', 'enable-timer', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
326
-            array('minimum-session-expires', 'INPUT', array('name' => 'minimum-session-expires', 'value' => '120', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
327
-            array('session-timeout', 'INPUT', array('name' => 'session-timeout-pt', 'value' => '1800', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
328
-            array('auth-calls', 'auth-calls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
329
-            array('apply-inbound-acl', 'INPUT', array('name' => 'apply-inbound-acl', 'value' => 'default', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
330
-            array('inbound-codec-prefs', 'INPUT', array('name' => 'inbound-codec-prefs', 'size' => '25',  'class' => "text field medium"), '', 'tOOL TIP', ''),
331
-            array('outbound-codec-prefs', 'INPUT', array('name' => 'outbound-codec-prefs', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
332
-            array('inbound-late-negotiation', 'inbound-late-negotiation', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
333
-            array('inbound-codec-negotiation', 'INPUT', array('name' => 'inbound-codec-negotiation', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
334
-        );
335
-        $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\')');
336
-        $form['button_save'] = array('content' => 'Save', 'value' => 'save', 'type' => 'button','id'=>'submit', 'class' => 'btn btn-line-parrot');
337
-
338
-        return $form;
339
-    }
340
-
341
-    function build_fssipprofile_list_for_admin() {
342
-        // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
343
-        $grid_field_arr = json_encode(array(
344
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
280
+			/******************************************/
281
+			array("Action", "106", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsgateway_edit/", "mode" => "popup","layout"=>"medium"),
282
+					"DELETE" => array("url" => "/freeswitch/fsgateway_delete/", "mode" => "single")))
283
+				));
284
+		return $grid_field_arr;
285
+	}
286
+	/******************************************************/
287
+
288
+	function build_fdgateway_grid_buttons() {
289
+		$buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsgateway_add/", "popup","medium"),
290
+		array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/fsgateway_delete_multiple/")
291
+			));
292
+		return $buttons_json;
293
+	}
294
+
295
+	function get_sipprofile_form_fields() {
296
+		$form['forms'] = array(base_url() . 'freeswitch/fssipprofile_save/', array("id" => "fssipprofile_form", "name" => "fssipprofile_form"));
297
+		$form['Basic Information'] = array(
298
+			array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
299
+			array('Profile name', 'INPUT', array('name' => 'name', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Name'),
300
+			array('sip-ip', 'INPUT', array('name' => 'sip_ip', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP IP Name'),
301
+			array('sip-port', 'INPUT', array('name' => 'sip_port', 'size' => '20', 'value' => '5060',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP Port'),
302
+			array('rtp-ip', 'INPUT', array('name' => 'rtp_ip', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
303
+			array('Dial Plan', 'INPUT', array('name' => 'dialplan', 'size' => '20', 'value' => 'XML',  'class' => "text field medium"), '', 'tOOL TIP', ''),
304
+			array('user-agent-string', 'INPUT', array('name' => 'user-agent-string', 'size' => '20', 'value' => 'ASTPP',  'class' => "text field medium"), '', 'tOOL TIP', ''),
305
+			array('debug', 'INPUT', array('name' => 'debug', 'size' => '20', 'value' => '0',  'class' => "text field medium"), '', 'tOOL TIP', ''),
306
+			array('sip-trace', 'sip-trace', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_drp_option'),
307
+			array('tls', 'tls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
308
+			array('inbound-reg-force-matching-username', 'inbound-reg-force-matching-username', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
309
+			array('disable-transcoding', 'disable-transcoding', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
310
+			array('all-reg-options-ping', 'all-reg-options-ping', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
311
+			array('unregister-on-options-fail', 'unregister-on-options-fail', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
312
+			array('log-auth-failures', 'log-auth-failures', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
313
+		array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
314
+		);
315
+
316
+		$form['Others Information'] = array(
317
+			array('inbound-bypass-media', 'inbound-bypass-media', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
318
+			array('inbound-proxy-media', 'inbound-proxy-media', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
319
+			array('disable-transfer', 'disable-transfer', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
320
+			array('enable-100rel', 'enable-100rel', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
321
+			array('rtp-timeout-sec', 'INPUT', array('name' => 'rtp-timeout-sec', 'size' => '20', 'value' => '60', 'class' => "text field medium"), '', 'tOOL TIP', ''),
322
+			array('dtmf-duration', 'INPUT', array('name' => 'dtmf-duration', 'size' => '20', 'value' => '2000', 'class' => "text field medium"), '', 'tOOL TIP', ''),
323
+			array('manual-redirect','manual-redirect', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
324
+			array('aggressive-nat-detection', 'aggressive-nat-detection', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
325
+			array('enable-Timer', 'enable-timer', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
326
+			array('minimum-session-expires', 'INPUT', array('name' => 'minimum-session-expires', 'value' => '120', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
327
+			array('session-timeout', 'INPUT', array('name' => 'session-timeout-pt', 'value' => '1800', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
328
+			array('auth-calls', 'auth-calls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
329
+			array('apply-inbound-acl', 'INPUT', array('name' => 'apply-inbound-acl', 'value' => 'default', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
330
+			array('inbound-codec-prefs', 'INPUT', array('name' => 'inbound-codec-prefs', 'size' => '25',  'class' => "text field medium"), '', 'tOOL TIP', ''),
331
+			array('outbound-codec-prefs', 'INPUT', array('name' => 'outbound-codec-prefs', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
332
+			array('inbound-late-negotiation', 'inbound-late-negotiation', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
333
+			array('inbound-codec-negotiation', 'INPUT', array('name' => 'inbound-codec-negotiation', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
334
+		);
335
+		$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\')');
336
+		$form['button_save'] = array('content' => 'Save', 'value' => 'save', 'type' => 'button','id'=>'submit', 'class' => 'btn btn-line-parrot');
337
+
338
+		return $form;
339
+	}
340
+
341
+	function build_fssipprofile_list_for_admin() {
342
+		// array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
343
+		$grid_field_arr = json_encode(array(
344
+		array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
345 345
 /**
346 346
 ASTPP  3.0
347 347
 For Sip Profile edit on Profile name
348 348
 **/
349
-            array("Name", "190", "name", "", "", "","EDITABLE","true","center"),
349
+			array("Name", "190", "name", "", "", "","EDITABLE","true","center"),
350 350
 /************************************/
351
-            array("SIP IP", "205", "sip_ip", "", "", "","","true","center"),
352
-            array("SIP Port", "200", "sip_port", "", "", "","","true","center"),
353
-           /*
351
+			array("SIP IP", "205", "sip_ip", "", "", "","","true","center"),
352
+			array("SIP Port", "200", "sip_port", "", "", "","","true","center"),
353
+		   /*
354 354
             ASTPP  3.0 
355 355
             status show active or inactive
356 356
             */
357
-            array("Status", "160", "status", "status", "sip_profiles", "get_status","","true","center"),
358
-           /*******************************************************/
359
-             array("Profile Action", "282", "", "", "", array("START" => array("url" => "/freeswitch/fssipprofile_action/start/","mode"=>"single"),
360
-                    "STOP" => array("url" => "/freeswitch/fssipprofile_action/stop/", "mode" => "single"),
361
-                    "RELOAD" => array("url" => "/freeswitch/fssipprofile_action/reload/", "mode" => "single"),
362
-                    "RESCAN" => array("url" => "/freeswitch/fssipprofile_action/rescan/", "mode" => "single"),                    
363
-                    )
364
-                ),  
365
-            array("Action", "202", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipprofile_edit/", "mode" => ""),
366
-                    "DELETE" => array("url" => "/freeswitch/fssipprofile_delete/", "mode" => "single")))
367
-                ));
368
-        return $grid_field_arr;
369
-    }
370
-
371
-    function build_fssipprofile_grid_buttons() {
372
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipprofile_add/",""),
373
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg","button_action", "/freeswitch/fssipprofile_delete_multiple/")
374
-           ));
375
-        return $buttons_json;
376
-    }
377
-
378
-    function build_fssipprofile_params_list_for_admin()
379
-    {
357
+			array("Status", "160", "status", "status", "sip_profiles", "get_status","","true","center"),
358
+		   /*******************************************************/
359
+			 array("Profile Action", "282", "", "", "", array("START" => array("url" => "/freeswitch/fssipprofile_action/start/","mode"=>"single"),
360
+					"STOP" => array("url" => "/freeswitch/fssipprofile_action/stop/", "mode" => "single"),
361
+					"RELOAD" => array("url" => "/freeswitch/fssipprofile_action/reload/", "mode" => "single"),
362
+					"RESCAN" => array("url" => "/freeswitch/fssipprofile_action/rescan/", "mode" => "single"),                    
363
+					)
364
+				),  
365
+			array("Action", "202", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipprofile_edit/", "mode" => ""),
366
+					"DELETE" => array("url" => "/freeswitch/fssipprofile_delete/", "mode" => "single")))
367
+				));
368
+		return $grid_field_arr;
369
+	}
370
+
371
+	function build_fssipprofile_grid_buttons() {
372
+		$buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipprofile_add/",""),
373
+		array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg","button_action", "/freeswitch/fssipprofile_delete_multiple/")
374
+		   ));
375
+		return $buttons_json;
376
+	}
377
+
378
+	function build_fssipprofile_params_list_for_admin()
379
+	{
380 380
 	$grid_field_arr = json_encode(array(
381
-	    array("Name", "450", "name", "", "", ""),
382
-            array("Value", "414", "sip_ip", "", "", ""),
381
+		array("Name", "450", "name", "", "", ""),
382
+			array("Value", "414", "sip_ip", "", "", ""),
383 383
 //             array("SIP Port", "250", "sip_port", "", "", ""),
384
-	    array("Action", "400", "", "", "", array("DELETE" => array("url" => "/freeswitch/fssipprofile_delete/", "mode" => "single")))
385
-                ));
386
-        return $grid_field_arr;
387
-    }
388
-    /*
384
+		array("Action", "400", "", "", "", array("DELETE" => array("url" => "/freeswitch/fssipprofile_delete/", "mode" => "single")))
385
+				));
386
+		return $grid_field_arr;
387
+	}
388
+	/*
389 389
     ASTPP  3.0 
390 390
     changes in gried size
391 391
     */
392
-    function build_fsserver_list() {
393
-        // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
394
-        $grid_field_arr = json_encode(array(
395
-            array("Host", "200", "freeswitch_host", "", "", "","","true","center"),
396
-            array(" Password", "200", "freeswitch_password", "", "", "","","true","center"),
397
-            array(" Port", "200", "freeswitch_port", "", "", "","","true","center"),
398
-            /*
392
+	function build_fsserver_list() {
393
+		// array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
394
+		$grid_field_arr = json_encode(array(
395
+			array("Host", "200", "freeswitch_host", "", "", "","","true","center"),
396
+			array(" Password", "200", "freeswitch_password", "", "", "","","true","center"),
397
+			array(" Port", "200", "freeswitch_port", "", "", "","","true","center"),
398
+			/*
399 399
             ASTPP  3.0 .3 creation field show in grid
400 400
             */
401
-            array("Status", "145", "status", "status", "freeswich_servers", "get_status","","true","center"),
402
-            array("Created Date", "170", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
403
-             array("Modified Date", "170", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
404
-            /********************************************************************/
401
+			array("Status", "145", "status", "status", "freeswich_servers", "get_status","","true","center"),
402
+			array("Created Date", "170", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
403
+			 array("Modified Date", "170", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
404
+			/********************************************************************/
405 405
            
406
-            array("Action", "182", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsserver_edit/", "mode" => "popup"),
407
-                    "DELETE" => array("url" => "/freeswitch/fsserver_delete/", "mode" => "single")))
408
-                ));
409
-        return $grid_field_arr;
410
-    }
411
-    /**************************************************/
412
-
413
-    function build_fsserver_grid_buttons() {
414
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsserver_add/", "popup"),
406
+			array("Action", "182", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsserver_edit/", "mode" => "popup"),
407
+					"DELETE" => array("url" => "/freeswitch/fsserver_delete/", "mode" => "single")))
408
+				));
409
+		return $grid_field_arr;
410
+	}
411
+	/**************************************************/
412
+
413
+	function build_fsserver_grid_buttons() {
414
+		$buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsserver_add/", "popup"),
415 415
 //array("Delete",  "btn btn-line-danger","fa fa-times-circle fa-lg",  "button_action", "/freeswitch/fssipdevices_delete_multiple/")
416
-            ));
417
-        return $buttons_json;
418
-    }
419
-
420
-    function get_form_fsserver_fields() {
421
-        $form['forms'] = array(base_url() . '/freeswitch/fsserver_save/', array("id" => "fsserver_form", "name" => "fsserver_form"));
422
-        $form['Freeswitch Server Information'] = array(
423
-            array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
424
-            array(' Host', 'INPUT', array('name' => 'freeswitch_host', 'size' => '20', 'class' => "text field medium"), 'trim|required|valid_ip', 'tOOL TIP', 'Please Enter account number'),
425
-            array(' Password', 'INPUT', array('name' => 'freeswitch_password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
426
-            array(' Port', 'INPUT', array('name' => 'freeswitch_port', 'size' => '20',  'class' => "text field medium"), 'trim|required|numeric', 'tOOL TIP', 'Please Enter account number'),
427
-        );
428
-
429
-        $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\')');
430
-        $form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
431
-
432
-        return $form;
433
-    }
434
-
435
-    function get_search_fsserver_form() {
436
-        $form['forms'] = array("", array('id' => "fsserver_search"));
437
-        $form['Search'] = array(
438
-            array(' Host', 'INPUT', array('name' => 'freeswitch_host[freeswitch_host]', '', 'id' => 'first_name', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'freeswitch_host[freeswitch_host-string]', '', '', '', 'search_string_type', ''),
439
-            array(' Port', 'INPUT', array('name' => 'freeswitch_port[freeswitch_port]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'freeswitch_port[freeswitch_port-string]', '', '', '', 'search_string_type', ''),
416
+			));
417
+		return $buttons_json;
418
+	}
419
+
420
+	function get_form_fsserver_fields() {
421
+		$form['forms'] = array(base_url() . '/freeswitch/fsserver_save/', array("id" => "fsserver_form", "name" => "fsserver_form"));
422
+		$form['Freeswitch Server Information'] = array(
423
+			array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
424
+			array(' Host', 'INPUT', array('name' => 'freeswitch_host', 'size' => '20', 'class' => "text field medium"), 'trim|required|valid_ip', 'tOOL TIP', 'Please Enter account number'),
425
+			array(' Password', 'INPUT', array('name' => 'freeswitch_password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
426
+			array(' Port', 'INPUT', array('name' => 'freeswitch_port', 'size' => '20',  'class' => "text field medium"), 'trim|required|numeric', 'tOOL TIP', 'Please Enter account number'),
427
+		);
428
+
429
+		$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\')');
430
+		$form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
431
+
432
+		return $form;
433
+	}
434
+
435
+	function get_search_fsserver_form() {
436
+		$form['forms'] = array("", array('id' => "fsserver_search"));
437
+		$form['Search'] = array(
438
+			array(' Host', 'INPUT', array('name' => 'freeswitch_host[freeswitch_host]', '', 'id' => 'first_name', 'size' => '15', 'class' => "text field "), '', 'tOOL TIP', '1', 'freeswitch_host[freeswitch_host-string]', '', '', '', 'search_string_type', ''),
439
+			array(' Port', 'INPUT', array('name' => 'freeswitch_port[freeswitch_port]', 'value' => '', 'size' => '20', 'class' => "text field "), '', 'Tool tips info', '1', 'freeswitch_port[freeswitch_port-string]', '', '', '', 'search_string_type', ''),
440 440
 		array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_search_status'),
441
-            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
442
-            array('', 'HIDDEN', 'advance_search', '1', '', '', '')
443
-        );
444
-        $form['button_search'] = array('name' => 'action', 'id' => "fsserver_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
445
-        $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');
446
-
447
-        return $form;
448
-    }
441
+			array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
442
+			array('', 'HIDDEN', 'advance_search', '1', '', '', '')
443
+		);
444
+		$form['button_search'] = array('name' => 'action', 'id' => "fsserver_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
445
+		$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');
446
+
447
+		return $form;
448
+	}
449 449
 	/*
450 450
 	ASTPP  3.0 
451 451
 	CHanges in grid size
452 452
 	*/
453
-    function build_devices_list_for_customer() {
454
-        $grid_field_arr = json_encode(array(
453
+	function build_devices_list_for_customer() {
454
+		$grid_field_arr = json_encode(array(
455 455
 			array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
456
-            array("User Name", "100", "username", "", "", "","","true","center"),
457
-            array("Password", "100", "password", "", "", "","","true","center"),
458
-            array("SIP Profile", "90", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
459
-            array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
460
-            array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
461
-            array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),
462
-            //array("Call Waiting", "105", "call_waiting", "", "", ""),
463
-            array("Status", "100", "status", "", "", "","","true","center"),
456
+			array("User Name", "100", "username", "", "", "","","true","center"),
457
+			array("Password", "100", "password", "", "", "","","true","center"),
458
+			array("SIP Profile", "90", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
459
+			array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
460
+			array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
461
+			array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),
462
+			//array("Call Waiting", "105", "call_waiting", "", "", ""),
463
+			array("Status", "100", "status", "", "", "","","true","center"),
464 464
 			array("Created Date", "100", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
465
-            array("Modified Date", "100", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
466
-            array("Action", "110", "", "", "", array("EDIT" => array("url" => "/accounts/fssipdevices_action/edit/", "mode" => "single"),
467
-                    "DELETE" => array("url" => "/accounts/fssipdevices_action/delete/", "mode" => "single")))
468
-                ));
469
-        return $grid_field_arr;
470
-    }
465
+			array("Modified Date", "100", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
466
+			array("Action", "110", "", "", "", array("EDIT" => array("url" => "/accounts/fssipdevices_action/edit/", "mode" => "single"),
467
+					"DELETE" => array("url" => "/accounts/fssipdevices_action/delete/", "mode" => "single")))
468
+				));
469
+		return $grid_field_arr;
470
+	}
471 471
     
472
-    /******************8*/
472
+	/******************8*/
473 473
 
474
-    function fsdevice_form_fields_for_customer($accountid , $id=false) {
474
+	function fsdevice_form_fields_for_customer($accountid , $id=false) {
475 475
     
476 476
 	// $val = $id > 0 ? 'sip_devices.username.' . $id : 'sip_devices.username';
477 477
 	$val=$id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
478
-        $uname_user = $this->CI->common->find_uniq_rendno('10', '', '');
479
-        $password = $this->CI->common->generate_password();
480
-        if ($this->CI->session->userdata("logintype") == '0'  || $this->CI->session->userdata("logintype") == '3') {
481
-            $link = base_url() . 'freeswitch/user_fssipdevices_save/true';
482
-            $form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
483
-            $form['Device Information'] = array(
484
-                array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
485
-                array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
486
-                array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer;color:#1BCB61 !important;font-size:14px; padding-left:5px; padding-top:8px; float:left; " title="Reset Password" class="change_number fa fa-refresh"></i>'),
487
-                array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20','id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer;color:#1BCB61 !important;  font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
488
-                array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
489
-                array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
490
-                //array('Call Waiting', 'call_waiting', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_call_waiting'),
491
-                array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
492
-            );
478
+		$uname_user = $this->CI->common->find_uniq_rendno('10', '', '');
479
+		$password = $this->CI->common->generate_password();
480
+		if ($this->CI->session->userdata("logintype") == '0'  || $this->CI->session->userdata("logintype") == '3') {
481
+			$link = base_url() . 'freeswitch/user_fssipdevices_save/true';
482
+			$form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
483
+			$form['Device Information'] = array(
484
+				array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
485
+				array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
486
+				array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer;color:#1BCB61 !important;font-size:14px; padding-left:5px; padding-top:8px; float:left; " title="Reset Password" class="change_number fa fa-refresh"></i>'),
487
+				array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20','id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer;color:#1BCB61 !important;  font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
488
+				array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
489
+				array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
490
+				//array('Call Waiting', 'call_waiting', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_call_waiting'),
491
+				array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
492
+			);
493 493
  /******
494 494
 ASTPP  3.0 
495 495
 Voicemail add edit
496 496
 ******/
497
-       $form['Voicemail Options'] = array(
497
+	   $form['Voicemail Options'] = array(
498 498
             
499
-            array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
499
+			array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
500 500
             
501 501
             
502 502
 			array('Password', 'INPUT', array('name' => 'voicemail_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
@@ -507,40 +507,40 @@  discard block
 block discarded – undo
507 507
 			
508 508
 			array('Send all Message', 'vm_send_all_message', 'CHECKBOX', array('name' => 'vm_send_all_message', 'value' => 'on', 'checked' => false), '', 'tOOL TIP', 'Please Select Status', 'custom_status_voicemail', '', '', ''),
509 509
         
510
-        );   
510
+		);   
511 511
 /*******************/           
512
-        } else {
513
-             if($accountid){
514
-	            $account_Arr=null;
515
-	     }else{
516
-	            $account_Arr=array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0"));
517
-	     }       
518
-            if ($this->CI->session->userdata("logintype") == '1') {
512
+		} else {
513
+			 if($accountid){
514
+				$account_Arr=null;
515
+		 }else{
516
+				$account_Arr=array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0"));
517
+		 }       
518
+			if ($this->CI->session->userdata("logintype") == '1') {
519 519
 		$sip_pro =null;
520
-                $link = base_url() . 'freeswitch/customer_fssipdevices_save/true';
521
-            }else{
520
+				$link = base_url() . 'freeswitch/customer_fssipdevices_save/true';
521
+			}else{
522 522
 		$sip_pro =array('SIP Profile', 'sip_profile_id', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
523
-                $link = base_url() . 'freeswitch/fssipdevices_save/true';
524
-            }
525
-            $form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
526
-            /*Add sipdevice*/
527
-            $form['Device Information'] = array(
528
-                array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
529
-                array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
530
-                 array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;  padding-top:8px; float:left;" title="Reset Password" class="change_number fa fa-refresh"></i>'),
531
-             array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;padding-top:8px; float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
532
-                array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
533
-                array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
523
+				$link = base_url() . 'freeswitch/fssipdevices_save/true';
524
+			}
525
+			$form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
526
+			/*Add sipdevice*/
527
+			$form['Device Information'] = array(
528
+				array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
529
+				array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
530
+				 array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;  padding-top:8px; float:left;" title="Reset Password" class="change_number fa fa-refresh"></i>'),
531
+			 array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;padding-top:8px; float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
532
+				array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
533
+				array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
534 534
 		$account_Arr,
535
-                array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
536
-                 $sip_pro,
537
-            );
535
+				array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
536
+				 $sip_pro,
537
+			);
538 538
 /******
539 539
 ASTPP  3.0 
540 540
 Voicemail add edit
541 541
 ******/
542 542
 	 $form['Voicemail Options'] = array(
543
-            array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
543
+			array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
544 544
 			array('Password', 'INPUT', array('name' => 'voicemail_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'PleaseEnter account number'),
545 545
 			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
546 546
 			array('Attach File', 'voicemail_attach_file', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
@@ -551,15 +551,15 @@  discard block
 block discarded – undo
551 551
 			array('Send all Message', 'vm_send_all_message', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
552 552
 	 
553 553
         
554
-        );
554
+		);
555 555
 /********************/
556
-        }
556
+		}
557 557
 
558
-        $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\')');
559
-        $form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
558
+		$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\')');
559
+		$form['button_save'] = array('name' => 'action', 'content' => 'Save', 'value' => 'save', 'id' => 'submit', 'type' => 'button', 'class' => 'btn btn-line-parrot');
560 560
 
561
-        return $form;
562
-    }
561
+		return $form;
562
+	}
563 563
 
564 564
 }
565 565
 
Please login to merge, or discard this patch.
Spacing   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 23
 ###############################################################################
24 24
 
25
-if (!defined('BASEPATH'))
25
+if ( ! defined('BASEPATH'))
26 26
     exit('No direct script access allowed');
27 27
 
28 28
 class Freeswitch_form {
@@ -31,26 +31,26 @@  discard block
 block discarded – undo
31 31
         $this->CI = & get_instance();
32 32
     }
33 33
 
34
-    function get_freeswith_form_fields($id=false) {
34
+    function get_freeswith_form_fields($id = false) {
35 35
 	$log_type = $this->CI->session->userdata("logintype");
36
-	if($log_type == 0  || $log_type == 3 || $log_type == 1){
37
-	      $sip_pro=null;
36
+	if ($log_type == 0 || $log_type == 3 || $log_type == 1) {
37
+	      $sip_pro = null;
38 38
 	}
39
-	else{
40
-	      $sip_pro=array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
39
+	else {
40
+	      $sip_pro = array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
41 41
 
42 42
 	}  
43
-	$val=$id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
43
+	$val = $id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
44 44
 	  $uname_user = $this->CI->common->find_uniq_rendno('10', '', '');
45 45
         $password = $this->CI->common->generate_password();
46 46
         /*Edit functionality*/
47
-        $form['forms'] = array(base_url() . 'freeswitch/fssipdevices_save/', array("id" => "sipdevices_form", "name" => "sipdevices_form"));
47
+        $form['forms'] = array(base_url().'freeswitch/fssipdevices_save/', array("id" => "sipdevices_form", "name" => "sipdevices_form"));
48 48
         $form['Device Information'] = array(
49 49
             array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
50
-             array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_number  fa fa-refresh"></i>'),
51
-            array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'value'=>$password ,'id'=>'password1','class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'), 
52
-			array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
53
-            array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
50
+             array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user, 'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number', '<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_number  fa fa-refresh"></i>'),
51
+            array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'value'=>$password, 'id'=>'password1', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password', '<i style="cursor:pointer; color:#1BCB61 !important; font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'), 
52
+			array('Account', 'accountcode', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0", "type"=>"0", "deleted" => "0")),
53
+            array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
54 54
             array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
55 55
             array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
56 56
 	   $sip_pro,
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
65 65
             
66 66
 			array('Password', 'INPUT', array('name' => 'voicemail_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
67
-			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
67
+			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
68 68
             
69 69
             array('Attach File', 'voicemail_attach_file', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
70 70
             
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
             
91 91
              array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
92 92
             array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
93
-            array('Gateway', 'gateway_id', 'SELECT', '', '', 'tOOL TIP', 'Please select gateway first', 'id', 'name', 'gateways', 'build_dropdown','where_arr', ''), 
94
-            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0")),
93
+            array('Gateway', 'gateway_id', 'SELECT', '', '', 'tOOL TIP', 'Please select gateway first', 'id', 'name', 'gateways', 'build_dropdown', 'where_arr', ''), 
94
+            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0", "type"=>"0", "deleted" => "0")),
95 95
 	 array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status', '', ''),
96
-	array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
96
+	array('', 'HIDDEN', 'ajax_search', '1', '', '', ''), array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
97 97
         $form['button_search'] = array('name' => 'action', 'id' => "freeswith_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
98 98
         $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');
99 99
         return $form;
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
       function get_sipdevices_search_form_user() {
103 103
         $form['forms'] = array("", array('id' => "sipdevices_search"));
104 104
         $form['Search'] = array(
105
-            array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20',  'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
105
+            array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
106 106
             array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
107 107
 	    array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),
108 108
             array('', 'HIDDEN', 'advance_search', '1', '', '', ''),
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $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');
132 132
         return $form;
133 133
     }
134
-    function get_sipprofile_search_form(){
134
+    function get_sipprofile_search_form() {
135 135
     
136 136
        $form['forms'] = array("", array('id' => "freeswitch_search"));
137 137
         $form['Search'] = array(
@@ -154,10 +154,10 @@  discard block
 block discarded – undo
154 154
             
155 155
             array('Username', 'INPUT', array('name' => 'username[username]', '', 'size' => '20', 'class' => "text field"), '', 'tOOL TIP', '1', 'username[username-string]', '', '', '', 'search_string_type', ''),
156 156
             array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', 'where_arr', ''),
157
-            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"GLOBAL", "deleted" => "0")),
157
+            array('Account', 'accountid', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0", "type"=>"GLOBAL", "deleted" => "0")),
158 158
             array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_search_status'),  
159 159
             //array('Voicemail', 'vm-enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_voicemail_status'),
160
-            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''),array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
160
+            array('', 'HIDDEN', 'ajax_search', '1', '', '', ''), array('', 'HIDDEN', 'advance_search', '1', '', '', ''));
161 161
         $form['button_search'] = array('name' => 'action', 'id' => "fssipdevice_search_btn", 'content' => 'Search', 'value' => 'save', 'type' => 'button', 'class' => 'btn btn-line-parrot pull-right');
162 162
         $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');
163 163
         return $form;
@@ -168,18 +168,18 @@  discard block
 block discarded – undo
168 168
     */
169 169
     function build_system_list_for_admin() {
170 170
         $grid_field_arr = json_encode(array(
171
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "50", "", "", "", "","","false","center"),
172
-            array("User Name", "100", "username", "", "", "","","true","center"),
173
-            array("Password", "100", "password", "", "", "","","true","center"),
174
-            array("SIP Profile", "100", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
175
-            array("Account", "150", "accountid", "first_name,last_name,number", "accounts", "build_concat_string","","true","center"),
176
-            array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
177
-            array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
178
-            array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),	
179
-            array("Status", "100", "status", "status", "sip_devies", "get_status","","true","center"),
180
-            array("Created Date", "130", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
181
-            array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
182
-            array("Action", "107", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipdevices_edit/", "mode" => "single","layout"=>"medium"),
171
+	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "50", "", "", "", "", "", "false", "center"),
172
+            array("User Name", "100", "username", "", "", "", "", "true", "center"),
173
+            array("Password", "100", "password", "", "", "", "", "true", "center"),
174
+            array("SIP Profile", "100", "sip_profile_id", "name", "sip_profiles", "get_field_name", "", "true", "center"),
175
+            array("Account", "150", "accountid", "first_name,last_name,number", "accounts", "build_concat_string", "", "true", "center"),
176
+            array("Caller Name", "100", "effective_caller_id_name", "", "", "", "", "true", "center"),
177
+            array("Caller Number", "100", "effective_caller_id_number", "", "", "", "", "true", "center"),
178
+            array("Voicemail", "100", "voicemail_enabled", "", "", "", "", "true", "center"),	
179
+            array("Status", "100", "status", "status", "sip_devies", "get_status", "", "true", "center"),
180
+            array("Created Date", "130", "creation_date", "creation_date", "creation_date", "convert_GMT_to", "", "true", "center"),
181
+            array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"),
182
+            array("Action", "107", "", "", "", array("EDIT" => array("url" => "/freeswitch/fssipdevices_edit/", "mode" => "single", "layout"=>"medium"),
183 183
                     "DELETE" => array("url" => "/freeswitch/fssipdevices_delete/", "mode" => "single")))
184 184
                 ));
185 185
         return $grid_field_arr;
@@ -188,52 +188,52 @@  discard block
 block discarded – undo
188 188
 
189 189
 
190 190
     function build_grid_buttons() {
191
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipdevices_add/", "popup","medium"),
192
-			array("Delete",  "btn btn-line-danger","fa fa-times-circle fa-lg",  "button_action", "/freeswitch/fssipdevices_delete_multiple/")   
191
+        $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipdevices_add/", "popup", "medium"),
192
+			array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/freeswitch/fssipdevices_delete_multiple/")   
193 193
                         ));
194 194
         return $buttons_json;
195 195
     }
196 196
     
197 197
     function fsdevices_build_grid_buttons($accountid) {
198
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_add/$accountid/", "popup","medium"),
199
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_delete_multiple/")
198
+        $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_add/$accountid/", "popup", "medium"),
199
+	    array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/freeswitch/customer_fssipdevices_delete_multiple/")
200 200
             ));
201 201
         return $buttons_json;
202 202
     }
203 203
 
204 204
     function get_gateway_form_fields() {
205 205
 
206
-        $form['forms'] = array(base_url() . 'freeswitch/fsgateway_save/', array("id" => "gateway_form", "name" => "gateway_form"));
206
+        $form['forms'] = array(base_url().'freeswitch/fsgateway_save/', array("id" => "gateway_form", "name" => "gateway_form"));
207 207
         $form['Basic Information'] = array(
208 208
             array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
209 209
             array('Name', 'INPUT', array('name' => 'name', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Gateway Name'),
210 210
             array('SIP Profile', 'sip_profile_id', 'SELECT', '', '', 'tOOL TIP', '', 'id', 'name', 'sip_profiles', 'build_dropdown', '', ''),
211
-            array('Username', 'INPUT', array('name' => 'username', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter user name'),
212
-           array('Password', 'INPUT', array('name' => 'password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter Password'),
213
-            array('Proxy', 'INPUT', array('name' => 'proxy', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', ''),
214
-            array('Outbound-<br/>Proxy', 'INPUT', array('name' => 'outbound-proxy', 'size' => '20',  'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''),
211
+            array('Username', 'INPUT', array('name' => 'username', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter user name'),
212
+           array('Password', 'INPUT', array('name' => 'password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter Password'),
213
+            array('Proxy', 'INPUT', array('name' => 'proxy', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', ''),
214
+            array('Outbound-<br/>Proxy', 'INPUT', array('name' => 'outbound-proxy', 'size' => '20', 'class' => "text field medium"), 'trim|xss_clean', 'tOOL TIP', ''),
215 215
 			array('Register', array('name' => 'register', 'class' => 'add_settings'), 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
216 216
             array('Caller-id-in-from', array('name' => 'caller-id-in-from', 'class' => 'add_settings'), 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
217 217
                 array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
218 218
             
219 219
         );
220 220
         $form['Optional Information'] = array(
221
-            array('From- Domain', 'INPUT', array('name' => 'from_domain', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
222
-            array('From User', 'INPUT', array('name' => 'from_user', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
223
-            array('Realm', 'INPUT', array('name' => 'realm', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
221
+            array('From- Domain', 'INPUT', array('name' => 'from_domain', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
222
+            array('From User', 'INPUT', array('name' => 'from_user', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
223
+            array('Realm', 'INPUT', array('name' => 'realm', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
224 224
             array('Extension', 'INPUT', array('name' => 'extension', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
225 225
             array('Expire Seconds', 'INPUT', array('name' => 'expire-seconds', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
226
-            array('Reg-<br/>Transport', 'INPUT', array('name' => 'register-transport', 'size' => '20','class' => "text field medium"), '', 'tOOL TIP', ''),
226
+            array('Reg-<br/>Transport', 'INPUT', array('name' => 'register-transport', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
227 227
             array('Contact Params', 'INPUT', array('name' => 'contact-params', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
228 228
             array('Ping', 'INPUT', array('name' => 'ping', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
229
-            array('Retry-<br/>Seconds', 'INPUT', array('name' => 'retry-seconds', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
230
-            array('Register-<br/>Proxy', 'INPUT', array('name' => 'register-proxy', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
229
+            array('Retry-<br/>Seconds', 'INPUT', array('name' => 'retry-seconds', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
230
+            array('Register-<br/>Proxy', 'INPUT', array('name' => 'register-proxy', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
231 231
             array('Channel', 'INPUT', array('name' => 'channel', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
232 232
                /**
233 233
                ASTPP  3.0 
234 234
                               put one variable with the name of dialplan variable 
235 235
               **/ 
236
-              array('Dialplan Variable', 'TEXTAREA', array('name' => 'dialplan_variable', 'size' => '20','cols'=>'10','rows'=>'5', 'class' => "col_md-5 form-control", 'style'=>"width: 200px; height: 100px;font-family: Open sans,sans-serif !important;"), '', 'tOOL TIP', ''),
236
+              array('Dialplan Variable', 'TEXTAREA', array('name' => 'dialplan_variable', 'size' => '20', 'cols'=>'10', 'rows'=>'5', 'class' => "col_md-5 form-control", 'style'=>"width: 200px; height: 100px;font-family: Open sans,sans-serif !important;"), '', 'tOOL TIP', ''),
237 237
              /*********************************************************************************************************/
238 238
         );
239 239
 
@@ -250,26 +250,26 @@  discard block
 block discarded – undo
250 250
     function build_fsgateway_list_for_admin() {
251 251
         // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
252 252
         $grid_field_arr = json_encode(array(
253
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
253
+	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"),
254 254
 /**
255 255
 ASTPP  3.0 
256 256
 For Gateway Edit on Gateway name
257 257
 **/
258
-            array("Name", "140", "name", "", "", "","EDITABLE","true","center"),
258
+            array("Name", "140", "name", "", "", "", "EDITABLE", "true", "center"),
259 259
 /**********************************/
260
-            array("SIP Profile", "115", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
261
-            array("Username", "140", "username", "", "", "","","true","center"),
260
+            array("SIP Profile", "115", "sip_profile_id", "name", "sip_profiles", "get_field_name", "", "true", "center"),
261
+            array("Username", "140", "username", "", "", "", "", "true", "center"),
262 262
 //             array("Password", "181", "password", "", "", ""),
263
-            array("Proxy", "145", "proxy", "", "", "","","true","center"),
264
-            array("Register", "120", "register", "register", "register", "convert_to_ucfirst","","true","center"),
265
-            array("Caller-Id-In-Form", "130", "caller-id-in-from", "caller-id-in-from", "caller-id-in-from", "convert_to_ucfirst","","true","center"),
263
+            array("Proxy", "145", "proxy", "", "", "", "", "true", "center"),
264
+            array("Register", "120", "register", "register", "register", "convert_to_ucfirst", "", "true", "center"),
265
+            array("Caller-Id-In-Form", "130", "caller-id-in-from", "caller-id-in-from", "caller-id-in-from", "convert_to_ucfirst", "", "true", "center"),
266 266
              /*
267 267
             ASTPP  3.0 
268 268
              creation field show in grid
269 269
             */
270
-            array("Status", "110", "status", "status", "gateways", "get_status","","true","center"),
271
-            array("Created Date", "100", "created_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
272
-             array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
270
+            array("Status", "110", "status", "status", "gateways", "get_status", "", "true", "center"),
271
+            array("Created Date", "100", "created_date", "creation_date", "creation_date", "convert_GMT_to", "", "true", "center"),
272
+             array("Modified Date", "130", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"),
273 273
             /********************************************************************/
274 274
            /*
275 275
             ASTPP  3.0 
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
             */
279 279
            
280 280
             /******************************************/
281
-            array("Action", "106", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsgateway_edit/", "mode" => "popup","layout"=>"medium"),
281
+            array("Action", "106", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsgateway_edit/", "mode" => "popup", "layout"=>"medium"),
282 282
                     "DELETE" => array("url" => "/freeswitch/fsgateway_delete/", "mode" => "single")))
283 283
                 ));
284 284
         return $grid_field_arr;
@@ -286,23 +286,23 @@  discard block
 block discarded – undo
286 286
     /******************************************************/
287 287
 
288 288
     function build_fdgateway_grid_buttons() {
289
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsgateway_add/", "popup","medium"),
290
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg", "button_action", "/freeswitch/fsgateway_delete_multiple/")
289
+        $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsgateway_add/", "popup", "medium"),
290
+	    array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/freeswitch/fsgateway_delete_multiple/")
291 291
             ));
292 292
         return $buttons_json;
293 293
     }
294 294
 
295 295
     function get_sipprofile_form_fields() {
296
-        $form['forms'] = array(base_url() . 'freeswitch/fssipprofile_save/', array("id" => "fssipprofile_form", "name" => "fssipprofile_form"));
296
+        $form['forms'] = array(base_url().'freeswitch/fssipprofile_save/', array("id" => "fssipprofile_form", "name" => "fssipprofile_form"));
297 297
         $form['Basic Information'] = array(
298 298
             array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
299
-            array('Profile name', 'INPUT', array('name' => 'name', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Name'),
300
-            array('sip-ip', 'INPUT', array('name' => 'sip_ip', 'size' => '20',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP IP Name'),
301
-            array('sip-port', 'INPUT', array('name' => 'sip_port', 'size' => '20', 'value' => '5060',  'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP Port'),
299
+            array('Profile name', 'INPUT', array('name' => 'name', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Name'),
300
+            array('sip-ip', 'INPUT', array('name' => 'sip_ip', 'size' => '20', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP IP Name'),
301
+            array('sip-port', 'INPUT', array('name' => 'sip_port', 'size' => '20', 'value' => '5060', 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter SIP Port'),
302 302
             array('rtp-ip', 'INPUT', array('name' => 'rtp_ip', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
303
-            array('Dial Plan', 'INPUT', array('name' => 'dialplan', 'size' => '20', 'value' => 'XML',  'class' => "text field medium"), '', 'tOOL TIP', ''),
304
-            array('user-agent-string', 'INPUT', array('name' => 'user-agent-string', 'size' => '20', 'value' => 'ASTPP',  'class' => "text field medium"), '', 'tOOL TIP', ''),
305
-            array('debug', 'INPUT', array('name' => 'debug', 'size' => '20', 'value' => '0',  'class' => "text field medium"), '', 'tOOL TIP', ''),
303
+            array('Dial Plan', 'INPUT', array('name' => 'dialplan', 'size' => '20', 'value' => 'XML', 'class' => "text field medium"), '', 'tOOL TIP', ''),
304
+            array('user-agent-string', 'INPUT', array('name' => 'user-agent-string', 'size' => '20', 'value' => 'ASTPP', 'class' => "text field medium"), '', 'tOOL TIP', ''),
305
+            array('debug', 'INPUT', array('name' => 'debug', 'size' => '20', 'value' => '0', 'class' => "text field medium"), '', 'tOOL TIP', ''),
306 306
             array('sip-trace', 'sip-trace', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_drp_option'),
307 307
             array('tls', 'tls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
308 308
             array('inbound-reg-force-matching-username', 'inbound-reg-force-matching-username', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
@@ -320,20 +320,20 @@  discard block
 block discarded – undo
320 320
             array('enable-100rel', 'enable-100rel', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
321 321
             array('rtp-timeout-sec', 'INPUT', array('name' => 'rtp-timeout-sec', 'size' => '20', 'value' => '60', 'class' => "text field medium"), '', 'tOOL TIP', ''),
322 322
             array('dtmf-duration', 'INPUT', array('name' => 'dtmf-duration', 'size' => '20', 'value' => '2000', 'class' => "text field medium"), '', 'tOOL TIP', ''),
323
-            array('manual-redirect','manual-redirect', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
323
+            array('manual-redirect', 'manual-redirect', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
324 324
             array('aggressive-nat-detection', 'aggressive-nat-detection', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
325 325
             array('enable-Timer', 'enable-timer', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
326 326
             array('minimum-session-expires', 'INPUT', array('name' => 'minimum-session-expires', 'value' => '120', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
327 327
             array('session-timeout', 'INPUT', array('name' => 'session-timeout-pt', 'value' => '1800', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
328 328
             array('auth-calls', 'auth-calls', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_option'),
329
-            array('apply-inbound-acl', 'INPUT', array('name' => 'apply-inbound-acl', 'value' => 'default', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', ''),
330
-            array('inbound-codec-prefs', 'INPUT', array('name' => 'inbound-codec-prefs', 'size' => '25',  'class' => "text field medium"), '', 'tOOL TIP', ''),
329
+            array('apply-inbound-acl', 'INPUT', array('name' => 'apply-inbound-acl', 'value' => 'default', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', ''),
330
+            array('inbound-codec-prefs', 'INPUT', array('name' => 'inbound-codec-prefs', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
331 331
             array('outbound-codec-prefs', 'INPUT', array('name' => 'outbound-codec-prefs', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
332 332
             array('inbound-late-negotiation', 'inbound-late-negotiation', 'SELECT', '', '', 'tOOL TIP', '', '', '', '', 'set_sip_config_options'),
333 333
             array('inbound-codec-negotiation', 'INPUT', array('name' => 'inbound-codec-negotiation', 'size' => '25', 'class' => "text field medium"), '', 'tOOL TIP', ''),
334 334
         );
335 335
         $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\')');
336
-        $form['button_save'] = array('content' => 'Save', 'value' => 'save', 'type' => 'button','id'=>'submit', 'class' => 'btn btn-line-parrot');
336
+        $form['button_save'] = array('content' => 'Save', 'value' => 'save', 'type' => 'button', 'id'=>'submit', 'class' => 'btn btn-line-parrot');
337 337
 
338 338
         return $form;
339 339
     }
@@ -341,22 +341,22 @@  discard block
 block discarded – undo
341 341
     function build_fssipprofile_list_for_admin() {
342 342
         // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
343 343
         $grid_field_arr = json_encode(array(
344
-	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
344
+	    array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"),
345 345
 /**
346 346
 ASTPP  3.0
347 347
 For Sip Profile edit on Profile name
348 348
 **/
349
-            array("Name", "190", "name", "", "", "","EDITABLE","true","center"),
349
+            array("Name", "190", "name", "", "", "", "EDITABLE", "true", "center"),
350 350
 /************************************/
351
-            array("SIP IP", "205", "sip_ip", "", "", "","","true","center"),
352
-            array("SIP Port", "200", "sip_port", "", "", "","","true","center"),
351
+            array("SIP IP", "205", "sip_ip", "", "", "", "", "true", "center"),
352
+            array("SIP Port", "200", "sip_port", "", "", "", "", "true", "center"),
353 353
            /*
354 354
             ASTPP  3.0 
355 355
             status show active or inactive
356 356
             */
357
-            array("Status", "160", "status", "status", "sip_profiles", "get_status","","true","center"),
357
+            array("Status", "160", "status", "status", "sip_profiles", "get_status", "", "true", "center"),
358 358
            /*******************************************************/
359
-             array("Profile Action", "282", "", "", "", array("START" => array("url" => "/freeswitch/fssipprofile_action/start/","mode"=>"single"),
359
+             array("Profile Action", "282", "", "", "", array("START" => array("url" => "/freeswitch/fssipprofile_action/start/", "mode"=>"single"),
360 360
                     "STOP" => array("url" => "/freeswitch/fssipprofile_action/stop/", "mode" => "single"),
361 361
                     "RELOAD" => array("url" => "/freeswitch/fssipprofile_action/reload/", "mode" => "single"),
362 362
                     "RESCAN" => array("url" => "/freeswitch/fssipprofile_action/rescan/", "mode" => "single"),                    
@@ -369,8 +369,8 @@  discard block
 block discarded – undo
369 369
     }
370 370
 
371 371
     function build_fssipprofile_grid_buttons() {
372
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipprofile_add/",""),
373
-	    array("Delete","btn btn-line-danger","fa fa-times-circle fa-lg","button_action", "/freeswitch/fssipprofile_delete_multiple/")
372
+        $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fssipprofile_add/", ""),
373
+	    array("Delete", "btn btn-line-danger", "fa fa-times-circle fa-lg", "button_action", "/freeswitch/fssipprofile_delete_multiple/")
374 374
            ));
375 375
         return $buttons_json;
376 376
     }
@@ -392,15 +392,15 @@  discard block
 block discarded – undo
392 392
     function build_fsserver_list() {
393 393
         // array(display name, width, db_field_parent_table,feidname, db_field_child_table,function name);
394 394
         $grid_field_arr = json_encode(array(
395
-            array("Host", "200", "freeswitch_host", "", "", "","","true","center"),
396
-            array(" Password", "200", "freeswitch_password", "", "", "","","true","center"),
397
-            array(" Port", "200", "freeswitch_port", "", "", "","","true","center"),
395
+            array("Host", "200", "freeswitch_host", "", "", "", "", "true", "center"),
396
+            array(" Password", "200", "freeswitch_password", "", "", "", "", "true", "center"),
397
+            array(" Port", "200", "freeswitch_port", "", "", "", "", "true", "center"),
398 398
             /*
399 399
             ASTPP  3.0 .3 creation field show in grid
400 400
             */
401
-            array("Status", "145", "status", "status", "freeswich_servers", "get_status","","true","center"),
402
-            array("Created Date", "170", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
403
-             array("Modified Date", "170", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
401
+            array("Status", "145", "status", "status", "freeswich_servers", "get_status", "", "true", "center"),
402
+            array("Created Date", "170", "creation_date", "creation_date", "creation_date", "convert_GMT_to", "", "true", "center"),
403
+             array("Modified Date", "170", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"),
404 404
             /********************************************************************/
405 405
            
406 406
             array("Action", "182", "", "", "", array("EDIT" => array("url" => "/freeswitch/fsserver_edit/", "mode" => "popup"),
@@ -411,19 +411,19 @@  discard block
 block discarded – undo
411 411
     /**************************************************/
412 412
 
413 413
     function build_fsserver_grid_buttons() {
414
-        $buttons_json = json_encode(array(array("Create","btn btn-line-warning btn","fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsserver_add/", "popup"),
414
+        $buttons_json = json_encode(array(array("Create", "btn btn-line-warning btn", "fa fa-plus-circle fa-lg", "button_action", "/freeswitch/fsserver_add/", "popup"),
415 415
 //array("Delete",  "btn btn-line-danger","fa fa-times-circle fa-lg",  "button_action", "/freeswitch/fssipdevices_delete_multiple/")
416 416
             ));
417 417
         return $buttons_json;
418 418
     }
419 419
 
420 420
     function get_form_fsserver_fields() {
421
-        $form['forms'] = array(base_url() . '/freeswitch/fsserver_save/', array("id" => "fsserver_form", "name" => "fsserver_form"));
421
+        $form['forms'] = array(base_url().'/freeswitch/fsserver_save/', array("id" => "fsserver_form", "name" => "fsserver_form"));
422 422
         $form['Freeswitch Server Information'] = array(
423 423
             array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
424 424
             array(' Host', 'INPUT', array('name' => 'freeswitch_host', 'size' => '20', 'class' => "text field medium"), 'trim|required|valid_ip', 'tOOL TIP', 'Please Enter account number'),
425
-            array(' Password', 'INPUT', array('name' => 'freeswitch_password', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
426
-            array(' Port', 'INPUT', array('name' => 'freeswitch_port', 'size' => '20',  'class' => "text field medium"), 'trim|required|numeric', 'tOOL TIP', 'Please Enter account number'),
425
+            array(' Password', 'INPUT', array('name' => 'freeswitch_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
426
+            array(' Port', 'INPUT', array('name' => 'freeswitch_port', 'size' => '20', 'class' => "text field medium"), 'trim|required|numeric', 'tOOL TIP', 'Please Enter account number'),
427 427
         );
428 428
 
429 429
         $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\')');
@@ -452,17 +452,17 @@  discard block
 block discarded – undo
452 452
 	*/
453 453
     function build_devices_list_for_customer() {
454 454
         $grid_field_arr = json_encode(array(
455
-			array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "","","false","center"),
456
-            array("User Name", "100", "username", "", "", "","","true","center"),
457
-            array("Password", "100", "password", "", "", "","","true","center"),
458
-            array("SIP Profile", "90", "sip_profile_id", "name", "sip_profiles", "get_field_name","","true","center"),
459
-            array("Caller Name", "100", "effective_caller_id_name", "", "", "","","true","center"),
460
-            array("Caller Number", "100", "effective_caller_id_number", "", "", "","","true","center"),
461
-            array("Voicemail", "100", "voicemail_enabled", "", "", "","","true","center"),
455
+			array("<input type='checkbox' name='chkAll' class='ace checkall'/><label class='lbl'></label>", "30", "", "", "", "", "", "false", "center"),
456
+            array("User Name", "100", "username", "", "", "", "", "true", "center"),
457
+            array("Password", "100", "password", "", "", "", "", "true", "center"),
458
+            array("SIP Profile", "90", "sip_profile_id", "name", "sip_profiles", "get_field_name", "", "true", "center"),
459
+            array("Caller Name", "100", "effective_caller_id_name", "", "", "", "", "true", "center"),
460
+            array("Caller Number", "100", "effective_caller_id_number", "", "", "", "", "true", "center"),
461
+            array("Voicemail", "100", "voicemail_enabled", "", "", "", "", "true", "center"),
462 462
             //array("Call Waiting", "105", "call_waiting", "", "", ""),
463
-            array("Status", "100", "status", "", "", "","","true","center"),
464
-			array("Created Date", "100", "creation_date", "creation_date", "creation_date", "convert_GMT_to","","true","center"),
465
-            array("Modified Date", "100", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to","","true","center"),
463
+            array("Status", "100", "status", "", "", "", "", "true", "center"),
464
+			array("Created Date", "100", "creation_date", "creation_date", "creation_date", "convert_GMT_to", "", "true", "center"),
465
+            array("Modified Date", "100", "last_modified_date", "last_modified_date", "last_modified_date", "convert_GMT_to", "", "true", "center"),
466 466
             array("Action", "110", "", "", "", array("EDIT" => array("url" => "/accounts/fssipdevices_action/edit/", "mode" => "single"),
467 467
                     "DELETE" => array("url" => "/accounts/fssipdevices_action/delete/", "mode" => "single")))
468 468
                 ));
@@ -471,21 +471,21 @@  discard block
 block discarded – undo
471 471
     
472 472
     /******************8*/
473 473
 
474
-    function fsdevice_form_fields_for_customer($accountid , $id=false) {
474
+    function fsdevice_form_fields_for_customer($accountid, $id = false) {
475 475
     
476 476
 	// $val = $id > 0 ? 'sip_devices.username.' . $id : 'sip_devices.username';
477
-	$val=$id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
477
+	$val = $id > 0 ? 'sip_devices.username.'.$id : 'sip_devices.username';   
478 478
         $uname_user = $this->CI->common->find_uniq_rendno('10', '', '');
479 479
         $password = $this->CI->common->generate_password();
480
-        if ($this->CI->session->userdata("logintype") == '0'  || $this->CI->session->userdata("logintype") == '3') {
481
-            $link = base_url() . 'freeswitch/user_fssipdevices_save/true';
480
+        if ($this->CI->session->userdata("logintype") == '0' || $this->CI->session->userdata("logintype") == '3') {
481
+            $link = base_url().'freeswitch/user_fssipdevices_save/true';
482 482
             $form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
483 483
             $form['Device Information'] = array(
484 484
                 array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
485 485
                 array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
486
-                array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer;color:#1BCB61 !important;font-size:14px; padding-left:5px; padding-top:8px; float:left; " title="Reset Password" class="change_number fa fa-refresh"></i>'),
487
-                array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20','id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer;color:#1BCB61 !important;  font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
488
-                array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
486
+                array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user, 'id'=>'username', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number', '<i style="cursor:pointer;color:#1BCB61 !important;font-size:14px; padding-left:5px; padding-top:8px; float:left; " title="Reset Password" class="change_number fa fa-refresh"></i>'),
487
+                array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'id'=>'password1', 'value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password', '<i style="cursor:pointer;color:#1BCB61 !important;  font-size:14px;    padding-left:5px;    padding-top:8px;    float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
488
+                array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
489 489
                 array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
490 490
                 //array('Call Waiting', 'call_waiting', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_call_waiting'),
491 491
                 array('Status', 'status', 'SELECT', '', '', 'tOOL TIP', 'Please Select Status', '', '', '', 'set_status'),
@@ -510,25 +510,25 @@  discard block
 block discarded – undo
510 510
         );   
511 511
 /*******************/           
512 512
         } else {
513
-             if($accountid){
514
-	            $account_Arr=null;
515
-	     }else{
516
-	            $account_Arr=array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0"));
513
+             if ($accountid) {
514
+	            $account_Arr = null;
515
+	     } else {
516
+	            $account_Arr = array('Account', 'accountcode', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0", "type"=>"0", "deleted" => "0"));
517 517
 	     }       
518 518
             if ($this->CI->session->userdata("logintype") == '1') {
519
-		$sip_pro =null;
520
-                $link = base_url() . 'freeswitch/customer_fssipdevices_save/true';
521
-            }else{
522
-		$sip_pro =array('SIP Profile', 'sip_profile_id', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
523
-                $link = base_url() . 'freeswitch/fssipdevices_save/true';
519
+		$sip_pro = null;
520
+                $link = base_url().'freeswitch/customer_fssipdevices_save/true';
521
+            } else {
522
+		$sip_pro = array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
523
+                $link = base_url().'freeswitch/fssipdevices_save/true';
524 524
             }
525 525
             $form['forms'] = array($link, array("id" => "sipdevices_form", "name" => "sipdevices_form"));
526 526
             /*Add sipdevice*/
527 527
             $form['Device Information'] = array(
528 528
                 array('', 'HIDDEN', array('name' => 'id'), '', '', '', ''),
529 529
                 array('', 'HIDDEN', array('name' => 'accountcode', 'value' => $accountid), '', '', '', ''),
530
-                 array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user,'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;  padding-top:8px; float:left;" title="Reset Password" class="change_number fa fa-refresh"></i>'),
531
-             array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'id'=>'password1','value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password','<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;padding-top:8px; float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
530
+                 array('Username', 'INPUT', array('name' => 'fs_username', 'size' => '20', 'value'=>$uname_user, 'id'=>'username1', 'class' => "text field medium"), 'trim|required|is_unique['.$val.']|xss_clean', 'tOOL TIP', 'Please Enter account number', '<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;  padding-top:8px; float:left;" title="Reset Password" class="change_number fa fa-refresh"></i>'),
531
+             array('Password', 'INPUT', array('name' => 'fs_password', 'size' => '20', 'id'=>'password1', 'value'=>$password, 'class' => "text field medium"), 'trim|required|xss_clean', 'tOOL TIP', 'Please Enter Password', '<i style="cursor:pointer; color:#1BCB61; font-size:14px; padding-left:5px;padding-top:8px; float:left;" title="Reset Password" class="change_pass fa fa-refresh"></i>'),
532 532
                 array('Caller Name', 'INPUT', array('name' => 'effective_caller_id_name', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
533 533
                 array('Caller Number', 'INPUT', array('name' => 'effective_caller_id_number', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
534 534
 		$account_Arr,
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
 	 $form['Voicemail Options'] = array(
543 543
             array('Enable', 'voicemail_enabled', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'set_sip_config_option'),
544 544
 			array('Password', 'INPUT', array('name' => 'voicemail_password', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'PleaseEnter account number'),
545
-			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20',  'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
545
+			array('Mail To', 'INPUT', array('name' => 'voicemail_mail_to', 'size' => '20', 'class' => "text field medium"), '', 'tOOL TIP', 'Please Enter account number'),
546 546
 			array('Attach File', 'voicemail_attach_file', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
547 547
 			//array('Local After Email', 'vm_keep_local_after_email', 'CHECKBOX', array('name' => 'vm_keep_local_after_email', 'value' => 'on', 'checked' => false), '', 'tOOL TIP', 'Please Select Status', 'custom_status_true', '', '', ''),
548 548
 			array('Local After Email', 'vm_keep_local_after_email', 'SELECT', '', '', 'tOOL TIP', 'Please Enter account number', '', '', '', 'custom_status_voicemail'),
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@  discard block
 block discarded – undo
22 22
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 23
 ###############################################################################
24 24
 
25
-if (!defined('BASEPATH'))
26
-    exit('No direct script access allowed');
25
+if (!defined('BASEPATH')) {
26
+    exit('No direct script access allowed');
27
+}
27 28
 
28 29
 class Freeswitch_form {
29 30
 
@@ -35,8 +36,7 @@  discard block
 block discarded – undo
35 36
 	$log_type = $this->CI->session->userdata("logintype");
36 37
 	if($log_type == 0  || $log_type == 3 || $log_type == 1){
37 38
 	      $sip_pro=null;
38
-	}
39
-	else{
39
+	} else{
40 40
 	      $sip_pro=array('SIP Profile', 'sip_profile_id', 'SELECT', '', 'trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
41 41
 
42 42
 	}  
@@ -512,13 +512,13 @@  discard block
 block discarded – undo
512 512
         } else {
513 513
              if($accountid){
514 514
 	            $account_Arr=null;
515
-	     }else{
515
+	     } else{
516 516
 	            $account_Arr=array('Account', 'accountcode', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'first_name,last_name,number', 'accounts', 'build_concat_dropdown', 'where_arr', array("reseller_id" => "0","type"=>"0", "deleted" => "0"));
517 517
 	     }       
518 518
             if ($this->CI->session->userdata("logintype") == '1') {
519 519
 		$sip_pro =null;
520 520
                 $link = base_url() . 'freeswitch/customer_fssipdevices_save/true';
521
-            }else{
521
+            } else{
522 522
 		$sip_pro =array('SIP Profile', 'sip_profile_id', 'SELECT', '','trim|dropdown|xss_clean', 'tOOL TIP', 'Please Enter account number', 'id', 'name', 'sip_profiles', 'build_dropdown', '', '');
523 523
                 $link = base_url() . 'freeswitch/fssipdevices_save/true';
524 524
             }
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/views/view_fssipprofile_edit.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,9 +185,9 @@
 block discarded – undo
185 185
 			<?
186 186
 			  if($params_name!='')
187 187
 			  {
188
-			    $type="edit_setting";
188
+				$type="edit_setting";
189 189
 			  }else{
190
-			    $type="add_setting";
190
+				$type="add_setting";
191 191
 			  }
192 192
 			?>
193 193
 			<input type='hidden' name='type_settings' value='<?=$type?>' />
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -101,23 +101,23 @@  discard block
 block discarded – undo
101 101
 		      </div>
102 102
 		     <form method="post" action="<?= base_url() ?>freeswitch/fssipprofile_add/edit/" enctype="multipart/form-data" name='form1' id ="myForm1">
103 103
 			<input type='hidden' name='id' value="<?=$id?>" />
104
-			<div class='col-md-12'><div style="width:550px;" ><label style="text-align:right;" class="col-md-3">Name *</label><input class="col-md-5 form-control" value="<?=$sip_name;?>" id="sip_name" name="name" size="20" type="text"></div>
104
+			<div class='col-md-12'><div style="width:550px;" ><label style="text-align:right;" class="col-md-3">Name *</label><input class="col-md-5 form-control" value="<?=$sip_name; ?>" id="sip_name" name="name" size="20" type="text"></div>
105 105
 			<span style="color:red;margin-left: 10px;float:left;" id="error_msg_sip"></span>
106 106
 			</div>
107 107
 			<div class='col-md-12'>  
108
-			<div style="width:550px;" ><label style="text-align:right;" class="col-md-3">SIP IP  *</label><input class="col-md-5 form-control " value="<?=@$sip_ip;?>" name="sip_ip" size="20" id="sip_ip" type="text"></div>
108
+			<div style="width:550px;" ><label style="text-align:right;" class="col-md-3">SIP IP  *</label><input class="col-md-5 form-control " value="<?=@$sip_ip; ?>" name="sip_ip" size="20" id="sip_ip" type="text"></div>
109 109
 			<span style="color:red;margin-left: 10px;float:left;" id="error_msg_ip"></span>
110 110
 			</div>
111 111
 			<div>
112
-			<div style="width:550px;"><label style="text-align:right;"  class="col-md-3">SIP Port *</label><input class="col-md-5 form-control" value="<?=@$sip_port;?>" name="sip_port" size="20" id="sip_port" type="text"></div>
112
+			<div style="width:550px;"><label style="text-align:right;"  class="col-md-3">SIP Port *</label><input class="col-md-5 form-control" value="<?=@$sip_port; ?>" name="sip_port" size="20" id="sip_port" type="text"></div>
113 113
 			<span style="color:red;margin-left: 10px;float:left;" id="error_msg_port"></span>
114 114
 			</div>
115 115
 			<div class='col-md-12'>
116 116
 			<div style="width:550px;"><label style="text-align:right;" class="col-md-3">Status </label>
117 117
 			<select name="sipstatus" class="col-md-5 form-control selectpicker" data-live-search='true'>
118 118
 			    
119
-			    <option value="0" <?if($status==0)echo 'selected=selected;'?>>Active</option>
120
-			    <option value="1" <?if($status==1)echo 'selected=selected;'?>>Inactive</option>
119
+			    <option value="0" <?if ($status == 0)echo 'selected=selected;'?>>Active</option>
120
+			    <option value="1" <?if ($status == 1)echo 'selected=selected;'?>>Inactive</option>
121 121
 			  </select>
122 122
                        </div>
123 123
 		       </div>
@@ -183,11 +183,11 @@  discard block
 block discarded – undo
183 183
 			          
184 184
 			</div>
185 185
 			<?
186
-			  if($params_name!='')
186
+			  if ($params_name != '')
187 187
 			  {
188
-			    $type="edit_setting";
189
-			  }else{
190
-			    $type="add_setting";
188
+			    $type = "edit_setting";
189
+			  } else {
190
+			    $type = "add_setting";
191 191
 			  }
192 192
 			?>
193 193
 			<input type='hidden' name='type_settings' value='<?=$type?>' />
Please login to merge, or discard this patch.
Braces   +14 added lines, -5 removed lines patch added patch discarded remove patch
@@ -97,7 +97,10 @@  discard block
 block discarded – undo
97 97
         	<div class="row">
98 98
                   <div class="col-md-12 spacer" style='margin-top:15px;' align=center > 
99 99
 		      <div style="color:red;margin-left: 60px;">
100
-			  <?php if (isset($validation_errors)) echo $validation_errors; ?> 
100
+			  <?php if (isset($validation_errors)) {
101
+	echo $validation_errors;
102
+}
103
+?> 
101 104
 		      </div>
102 105
 		     <form method="post" action="<?= base_url() ?>freeswitch/fssipprofile_add/edit/" enctype="multipart/form-data" name='form1' id ="myForm1">
103 106
 			<input type='hidden' name='id' value="<?=$id?>" />
@@ -116,7 +119,8 @@  discard block
 block discarded – undo
116 119
 			<div style="width:550px;"><label style="text-align:right;" class="col-md-3">Status </label>
117 120
 			<select name="sipstatus" class="col-md-5 form-control selectpicker" data-live-search='true'>
118 121
 			    
119
-			    <option value="0" <?if($status==0)echo 'selected=selected;'?>>Active</option>
122
+			    <option value="0" <?if($status==0) {
123
+	echo 'selected=selected;'?>>Active</option>
120 124
 			    <option value="1" <?if($status==1)echo 'selected=selected;'?>>Inactive</option>
121 125
 			  </select>
122 126
                        </div>
@@ -143,7 +147,9 @@  discard block
 block discarded – undo
143 147
     	<div class="container">
144 148
    	    <div class="row">
145 149
             	<div class="portlet-content"  id="search_bar" style="cursor:pointer; display:none">
146
-                    	<?php echo $form_search; ?>
150
+                    	<?php echo $form_search;
151
+}
152
+?>
147 153
     	        </div>
148 154
             </div>
149 155
         </div>
@@ -158,7 +164,10 @@  discard block
 block discarded – undo
158 164
                         
159 165
                        
160 166
                         <div style="color:red;margin-left: 60px;">
161
-			<?php if (isset($validation_errors)) echo $validation_errors; ?> 
167
+			<?php if (isset($validation_errors)) {
168
+	echo $validation_errors;
169
+}
170
+?> 
162 171
 		    </div>
163 172
                     <form method="post" name="form2" id="form2" action="<?= base_url() ?>freeswitch/fssipprofile_edit" enctype="multipart/form-data">
164 173
 			<input type='hidden' name='id' value=<?=$id?> />
@@ -186,7 +195,7 @@  discard block
 block discarded – undo
186 195
 			  if($params_name!='')
187 196
 			  {
188 197
 			    $type="edit_setting";
189
-			  }else{
198
+			  } else{
190 199
 			    $type="add_setting";
191 200
 			  }
192 201
 			?>
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/views/view_fs_freeswitch_execute.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@
 block discarded – undo
39 39
 		<div class="col-md-2">
40 40
 		  <select class="form-control" name="host_id" id="host_id">
41 41
   		      <?php
42
-    			foreach($fs_data as $name) { ?>
42
+				foreach($fs_data as $name) { ?>
43 43
      			 <option value="<?= $name['id'] ?>"<?php if(isset($host_id) && ($name['id'] == $host_id))echo 'selected';?>><?= $name['freeswitch_host'] ?></option>
44 44
   			  <?php
45
-    			  } ?>
45
+				  } ?>
46 46
 		   </select>
47 47
                 </div>	
48 48
 		<div class="col-md-2 " style="text-align:left;">
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 <?=$page_title?><br/>
7 7
 <? endblock() ?>
8 8
 <? startblock('content') ?>
9
-<?php 	$command_show = str_replace("api ","",$command); ?>
9
+<?php 	$command_show = str_replace("api ", "", $command); ?>
10 10
 <script>
11 11
 $(document).ready(function(){
12 12
   $("#freeswitch_command").change(function(){
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 		<div class="col-md-2">
40 40
 		  <select class="form-control" name="host_id" id="host_id">
41 41
   		      <?php
42
-    			foreach($fs_data as $name) { ?>
43
-     			 <option value="<?= $name['id'] ?>"<?php if(isset($host_id) && ($name['id'] == $host_id))echo 'selected';?>><?= $name['freeswitch_host'] ?></option>
42
+    			foreach ($fs_data as $name) { ?>
43
+     			 <option value="<?= $name['id'] ?>"<?php if (isset($host_id) && ($name['id'] == $host_id))echo 'selected'; ?>><?= $name['freeswitch_host'] ?></option>
44 44
   			  <?php
45 45
     			  } ?>
46 46
 		   </select>
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 		</div>
58 58
 		<span style="color:red;margin-left:655px;float:left;" id="error_field_command"></span>
59 59
 		</div>
60
-	     <?php if($command != ''){ ?>
60
+	     <?php if ($command != '') { ?>
61 61
              <div style="margin-left:00px;"><h2>Command : <font color="blue"><?php echo $command_show; ?></font></h2></div>
62 62
 	
63 63
 	     <div class="col-md-12"> 
Please login to merge, or discard this patch.
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,10 @@
 block discarded – undo
40 40
 		  <select class="form-control" name="host_id" id="host_id">
41 41
   		      <?php
42 42
     			foreach($fs_data as $name) { ?>
43
-     			 <option value="<?= $name['id'] ?>"<?php if(isset($host_id) && ($name['id'] == $host_id))echo 'selected';?>><?= $name['freeswitch_host'] ?></option>
43
+     			 <option value="<?= $name['id'] ?>"<?php if(isset($host_id) && ($name['id'] == $host_id)) {
44
+	echo 'selected';
45
+}
46
+?>><?= $name['freeswitch_host'] ?></option>
44 47
   			  <?php
45 48
     			  } ?>
46 49
 		   </select>
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/views/view_fsserver_add_edit.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,10 @@
 block discarded – undo
20 20
     <section class="slice color-three no-margin">
21 21
 	<div class="w-section inverse no-padding">
22 22
             <div style="color:red;margin-left: 60px;">
23
-                <?php if (isset($validation_errors)) echo $validation_errors; ?> 
23
+                <?php if (isset($validation_errors)) {
24
+	echo $validation_errors;
25
+}
26
+?> 
24 27
             </div>
25 28
             <?php echo $form; ?>
26 29
         </div>      
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/views/view_fssipprofile_add.php 1 patch
Braces   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,10 @@  discard block
 block discarded – undo
98 98
     <section class="slice color-three no-margin">
99 99
 	<div class="w-section inverse no-padding">
100 100
             <div style="color:red;margin-left: 60px;">
101
-                <?php if (isset($validation_errors)) echo $validation_errors; ?> 
101
+                <?php if (isset($validation_errors)) {
102
+	echo $validation_errors;
103
+}
104
+?> 
102 105
             </div>
103 106
             <?php echo $form; ?>
104 107
         </div>      
@@ -113,7 +116,10 @@  discard block
 block discarded – undo
113 116
         	<div class="row">
114 117
                   <div class="col-md-12" align=center style='margin-top:15px;' > 
115 118
 		    <div style="color:red;margin-left: 60px;">
116
-			<?php if (isset($validation_errors)) echo $validation_errors; ?> 
119
+			<?php if (isset($validation_errors)) {
120
+	echo $validation_errors;
121
+}
122
+?> 
117 123
 		    </div>
118 124
 		  <form method="post" action="<?= base_url() ?>freeswitch/fssipprofile_add/add/" enctype="multipart/form-data" name='form1' id ="myForm1" >
119 125
 			
Please login to merge, or discard this patch.
astpp/application/modules/freeswitch/views/view_fs_livecall_report.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
   var showOrHide=false;
6 6
   $("#search_bar").toggle(showOrHide);
7 7
   $("#flex1").flexigrid({
8
-    url: "<?php echo base_url();?>freeswitch/livecall_report_json/",
8
+    url: "<?php echo base_url(); ?>freeswitch/livecall_report_json/",
9 9
     method: 'GET',
10 10
     dataType: 'json',
11 11
 	colModel : [
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 	//preProcess: formatContactResults,
40 40
 	onSuccess: function(data){
41 41
 	  $('a[rel*=facebox]').facebox({
42
-		    loadingImage : '<?php echo base_url();?>/images/loading.gif',
43
-		    closeImage   : '<?php echo base_url();?>/images/closelabel.png'
42
+		    loadingImage : '<?php echo base_url(); ?>/images/loading.gif',
43
+		    closeImage   : '<?php echo base_url(); ?>/images/closelabel.png'
44 44
 	    });
45 45
 	},
46 46
 	/*onError: function(){
Please login to merge, or discard this patch.