<?php function set_upload_service($path){ $config = array(); $config['upload_path'] = $path; $config['allowed_types'] = '*'; $config['overwrite'] = FALSE; return $config; } function remove_html(&$item, $key){ $item = strip_tags($item); } function set_log($class,$method,$postdata,$auth){ $CI = & get_instance(); $url = $class.'/'.$method; $data = array('url'=>$url, 'parameter'=>$postdata, 'auth'=>$auth, 'time'=>date('Y-m-d h:i:s')); $CI->db->insert('service_log',$data); return $CI->db->insert_id(); } function getSettings(){ $CI = & get_instance(); $settings = $CI->db->get('setting'); return (!empty($settings))?$settings->row_array():''; } function pr($val){ echo (is_array($val))?'<pre>':''; print_r($val); echo (is_array($val))?'</pre>':''; exit; } function pre($val){ echo (is_array($val))?'<pre>':''; print_r($val); echo (is_array($val))?'</pre>':''; echo '<br>'; } function encode_param($param = ''){ if(empty($param)){ return; } $encode = base64_encode('{*}'.$param.'{*}'); $encode = base64_encode('a%a'.$encode.'a%a'); $encode = base64_encode('b'.$encode.'b'); $encode = base64_encode('Ta7K'.$encode.'eyRq'); return urlencode($encode); } function decode_param($param = ''){ if(empty($param)){ return; } $decode = urldecode(trim($param)); $decode = trim(base64_decode(urldecode($decode)),'Ta7K'); $decode = trim($decode,'eyRq'); $decode = trim(base64_decode(urldecode($decode)),'b'); $decode = trim(base64_decode(urldecode($decode)),'a%a'); $decode = trim(base64_decode(urldecode($decode)),'{*}'); return $decode; } function getLocationLatLng($location = ''){ $settings = getSettings(); if(empty($location) || empty($settings) || !isset($settings['google_api_key']) || empty($gKey = $settings['google_api_key'])){ return 0; } $thisObj = & get_instance(); $locData = file_get_contents("https://maps.google.com/maps/api/geocode/json?address=". urlencode($location)."&sensor=false&key=".$gKey); if(empty($locData)) return 0; $loc_data = json_decode($locData); if(empty($loc_data) || !isset($loc_data->status) || $loc_data->status != 'OK') return 0; $locArr['lat'] = $loc_data->{'results'}[0]->{'geometry'}->{'location'}->{'lat'}; $locArr['lng'] = $loc_data->{'results'}[0]->{'geometry'}->{'location'}->{'lng'}; if(empty($locArr['lat']) || empty($locArr['lng'])) return 0; return $locArr; } function generate_unique() { $unique = md5(uniqid(time().mt_rand(), true)); return $unique; } function genQRcode($data){ include 'qr_code/autoload.php'; $logo = 'assets/images/qr-cod-icon.png'; $QR = imagecreatefrompng('https://chart.googleapis.com/chart?cht=qr&chld=H|1&chs=500x500&chl='.urlencode($data)); $logo = imagecreatefromstring(file_get_contents($logo)); $QR_width = imagesx($QR); $QR_height = imagesy($QR); $logo_width = imagesx($logo); $logo_height = imagesy($logo); $logo_qr_width = $QR_width/3; $scale = $logo_width/$logo_qr_width; $logo_qr_height = $logo_height/$scale; imagecopyresampled($QR, $logo, $QR_width/3, $QR_height/3, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height); $savePath = "assets/uploads/qrcode/bookCode_".time().".png"; imagepng($QR, $savePath); return $savePath; } function BayanPayPayment(){ include 'BayanPayPaymentLibrary.php'; } function getNotifTemplate(){ $CI = & get_instance(); $settings = $CI->db->get('notification_templates'); return (!empty($settings))?$settings->row_array():''; } function roleManagement(){ $CI = & get_instance(); $menus = array(); $userType = $CI->session->userdata['user_type']; switch($userType){ /* ADD => 1 EDIT => 2 DELETE => 3 CHANGE_STATUS => 4 */ case 1: $menus = array('Dashboard'=>array(1,2,3,4),'Tag'=>array(1,2,3,4),'Host'=>array(1,2,3,4), 'CMS'=>array(1,2,3,4),'Event'=>array(1,2,3,4),'Organizer'=>array(1,2,3,4), 'Checker'=>array(1,2,3,4),'Category'=>array(1,2,3,4), 'Venue'=>array(1,2,3,4),'Staff'=>array(1,2,3,4),'City'=>array(1,2,3,4), 'Customer'=>array(1,2,3,4),'Booking'=>array(1,2,3,4), 'Commission'=>array(1,2,3,4),'Notification'=>array(1,2,3,4), 'Settings'=>array(1,2,3,4)); break; case 2: $menus = array('Dashboard'=>array(1,2,3,4),'Tag'=>array(),'Host'=>array(1), 'City'=>array(),'Category'=>array(),'Venue'=>array(1,2,3,4), 'Event'=>array(1,2,3,4),'Checker'=>array(1,2,3,4), 'Customer'=>array(),'Booking'=>array(1,2,3,4)); break; case 4: $menus = array('Dashboard'=>array(1,2,3,4),'Tag'=>array(1,2,3,4),'Host'=>array(1,2,3,4), 'City'=>array(1,2,3,4),'Category'=>array(1,2,3,4),'Venue'=>array(1,2,3,4), 'Event'=>array(1,2,3,4),'Checker'=>array(1,2,3,4), 'Organizer'=>array(1,2,3,4),'Customer'=>array(1,2,3,4), 'Booking'=>array(1,2,3,4),'Notification'=>array(1,2,3,4)); break; } return $menus; } ?>