Пример #1
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('levels/levels_model', 'sow_model', 'tag/tag_model', 'tag_item/tag_item_model', 'subject/subject_model'));
     $this->breadcrumb->append_crumb(lang('sow'), site_url('sow'));
     $this->load->model('Sow_model');
     $this->append_javascript($this->data['theme_path'] . 'plugins/uploadifive/jquery.uploadifive.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/uploadifive/uploadifive.css');
     $this->data['js_lang']['url_added'] = lang('url_added');
     $this->data['js_lang']['note_updated'] = lang('note_updated');
     $this->data['js_lang']['note_deleted'] = lang('note_deleted');
     $this->data['js_lang']['interval_updated'] = lang('interval_updated');
     $this->data['js_lang']['delete_note'] = lang('delete_note');
     $this->data['js_lang']['delete_period'] = lang('delete_period');
     $this->data['js_lang']['sow_added_successfully'] = lang('sow_added_successfully');
     $this->data['js_lang']['sow_updated_successfully'] = lang('sow_updated_successfully');
     $this->data['js_lang']['confirm_delete_url'] = lang('confirm_delete_url');
     $this->data['js_lang']['url_deleted_successfully'] = lang('url_deleted_successfully');
     $this->data['js_lang']['update_revision'] = lang('update_revision');
     $this->data['js_lang']['revision_added_successfully'] = lang('revision_added_successfully');
     $this->data['js_lang']['confirm_delete_sow'] = lang('confirm_delete_sow');
     if (!_can('Curriculum Planning') and !_can('Curriculum View')) {
         $this->_set_flashdata(lang('scheme_of_work_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     } else {
         if (!_can('Curriculum Planning') and !in_array($this->data['current_controller_method'], array('index', 'get_sow', 'download_file_path', 'download_file'))) {
             $this->_set_flashdata(lang('scheme_of_work_permission_denied'), 'error');
             redirect(site_url('dashboard'));
         }
     }
     // $this->selected_year_term_id = $this->curriculum_year_term;
 }
Пример #2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('variables_model');
     $this->load->library('form_validation');
     $this->data['js_lang']['are_you_sure_you_want_to_delete_this'] = lang('are_you_sure_you_want_to_delete_this');
     $this->data['js_lang']['added_successfully'] = lang('added_successfully');
     $this->data['js_lang']['edited_successfully'] = lang('edited_successfully');
     $this->data['js_lang']['education_level'] = lang('education_level_lbl');
     $this->data['js_lang']['id_type'] = lang('id_type_lbl');
     $this->data['js_lang']['monthly_income'] = lang('monthly_income_lbl');
     $this->data['js_lang']['nation'] = lang('nation_lbl');
     $this->data['js_lang']['race'] = lang('race_lbl');
     $this->data['js_lang']['payment_type'] = lang('payment_type');
     $this->data['js_lang']['payment_item'] = lang('payment_item_lbl');
     $this->data['js_lang']['payment_service'] = lang('payment_service');
     $this->data['js_lang']['event_item'] = lang('event_item_lbl');
     $this->data['js_lang']['country'] = lang('country');
     $this->data['js_lang']['event_types'] = lang('event_types');
     $this->data['js_lang']['kinship'] = lang('kinship');
     $this->data['js_lang']['payment_terms'] = lang('payment_terms');
     $this->data['js_lang']['payment_frequency_lbl'] = lang('payment_frequency_lbl');
     $this->data['js_lang']['service_added_successfully'] = lang('service_added_successfully');
     $this->data['js_lang']['field_added_successfully'] = lang('field_added_successfully');
     $this->data['js_lang']['field_updated_successfully'] = lang('field_updated_successfully');
     $this->append_javascript($this->data['theme_path'] . 'plugins/uploadifive/jquery.uploadifive_1.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/uploadifive/uploadifive.css');
     if (!_can('Variables Management')) {
         $this->_set_flashdata(lang('variables_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #3
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('payment_model', 'child/child_model', 'levels/levels_model', 'classes/classes_model', 'account/currency_settings_model'));
     $this->load->library('form_validation');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/elrte/css/elrte.css');
     $this->append_javascript($this->data['theme_path'] . 'plugins/elrte/js/elrte.min.js');
     $this->form_validation->set_error_delimiters('', '');
     $this->append_javascript($this->data['theme_path'] . 'plugins/colorpicker/colorpicker.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/colorpicker/colorpicker.css');
     $this->append_javascript('themes/backend/plugins/chosen/chosen.jquery.js');
     $this->append_stylesheet('themes/backend/plugins/chosen/chosen.css');
     $default = array();
     $centre_settings = $this->payment_model->getOneWhere(array('id' => $this->current_centre_role->centre_id), IMS_DB_PREFIX . 'centre');
     $this->data['latest_centre_currency_setting'] = $this->currency_settings_model->getCentreCurrencySetting($this->current_centre_role->centre_id);
     global $payment_date_format_settings;
     if (empty($centre_settings->billing_settings)) {
         $this->data['billing_settings'] = array('vat' => '', 'date_format' => '', 'time_format' => '', 'payment_term' => '', 'business_detail' => '', 'going_to_due' => '', 'over_due' => '', 'snd_over_due' => '');
         // $this->data['current_currency'] = 'USD';
         $this->data['tax'] = 0;
         $payment_date_format_settings = array('date_format' => 'Y-m-d', 'time_format' => 'H:i:s');
     } else {
         $this->data['billing_settings'] = unserialize($centre_settings->billing_settings);
         unset($this->data['billing_settings']['currency']);
         // $this->data['current_currency'] = $this->data['billing_settings']['currency'];
         $this->data['tax'] = $this->data['billing_settings']['vat'];
         $payment_date_format_settings = array('date_format' => $this->data['billing_settings']['date_format'], 'time_format' => $this->data['billing_settings']['time_format']);
     }
     $this->data['current_currency'] = empty($this->data['latest_centre_currency_setting']) ? 'USD' : $this->data['latest_centre_currency_setting']->currency_code;
     if (!_can('Payment Management')) {
         $this->_set_flashdata(lang('Permission Denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #4
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('Subject_model');
     $this->data['js_lang']['are_you_sure_want_to_delete_this_subject'] = lang('are_you_sure_want_to_delete_this_subject');
     $this->data['js_lang']['subject_deleted_successfully'] = lang('subject_deleted_successfully');
     $this->data['js_lang']['subject_added_successfully'] = lang('subject_added_successfully');
     $this->data['js_lang']['subject_edited_successfully'] = lang('subject_edited_successfully');
     $this->data['js_lang']['theme_management'] = lang('theme_management');
     $this->data['js_lang']['theme_deleted'] = lang('theme_deleted');
     $this->data['js_lang']['confirm_delete_theme'] = lang('confirm_delete_theme');
     $this->data['js_lang']['sub_theme_deleted'] = lang('sub_theme_deleted');
     $this->data['js_lang']['confirm_delete_sub_theme'] = lang('confirm_delete_sub_theme');
     $this->data['js_lang']['are_you_sure_want_to_delete_this_area'] = lang('are_you_sure_want_to_delete_this_area');
     $this->data['js_lang']['area_deleted_successfully'] = lang('area_deleted_successfully');
     $this->data['js_lang']['area_addded_successfully'] = lang('area_addded_successfully');
     $this->data['js_lang']['area_edited_successfully'] = lang('area_edited_successfully');
     $this->data['js_lang']['are_you_sure_want_to_delete_this_subarea'] = lang('are_you_sure_want_to_delete_this_subarea');
     $this->data['js_lang']['subarea_deleted_successfully'] = lang('subarea_deleted_successfully');
     $this->data['js_lang']['subarea_addded_successfully'] = lang('subrea_addded_successfully');
     $this->data['js_lang']['subarea_edited_successfully'] = lang('subarea_edited_successfully');
     $this->breadcrumb->append_crumb(lang('subject'), site_url('subject'));
     if (!_can('Subject Management')) {
         $this->_set_flashdata(lang('subject_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #5
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('unzip');
     $this->unzip->allow(array('png', 'gif', 'jpeg', 'jpg', 'avi', 'mpeg', 'mov', 'mpg', 'mp4', 'wma', 'wmv'));
     $this->load->model('album_model');
     $this->breadcrumb->append_crumb(lang('album'), site_url('album'));
     $this->append_javascript($this->data['theme_path'] . 'plugins/uploadifive/jquery.uploadifive.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/uploadifive/uploadifive.css');
     $this->data['js_lang']['child_added_successfully'] = lang('child_added_successfully');
     $this->data['js_lang']['create_new_album'] = lang('create_new_album');
     $this->data['js_lang']['edit_album'] = lang('edit_album');
     $this->data['js_lang']['item_deleted'] = lang('item_deleted');
     $this->data['js_lang']['description_added'] = lang('description_added');
     $this->data['js_lang']['edit_portfolio'] = lang('edit_portfolio');
     if (!_can('Album Management')) {
         $this->_set_flashdata(lang('permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
     define('NEW_ALBUM', '0');
     define('NOT_PUBLISH_YET', '2');
     define('PUBLISHED', '1');
     $this->session->keep_flashdata('album_type');
     $this->session->keep_flashdata('status_type');
     $this->session->keep_flashdata('album_offset');
     if ($this->data['current_controller_method'] != 'index') {
         $this->session->set_flashdata('album_use_flash', true);
     }
 }
Пример #6
0
 function __construct()
 {
     parent::__construct();
     $this->load->model(array('leave_model', 'leave_type_model', 'user/user_model'));
     $this->data['js_lang']['add_leave_entitlement'] = lang('add_leave_entitlement');
     $this->data['js_lang']['add_leave_entitlement'] = lang('add_leave_entitlement');
     $this->data['js_lang']['leave_entitled_successfully'] = lang('leave_entitled_successfully');
     $this->data['js_lang']['update_leave_entitlement'] = lang('update_leave_entitlement');
     $this->data['js_lang']['leave_entitled__updated_successfully'] = lang('leave_entitled__updated_successfully');
     $this->data['js_lang']['confirm_delete'] = lang('confirm_delete');
     $this->data['js_lang']['entitled_deleted_successfully'] = lang('entitled_deleted_successfully');
     $this->data['js_lang']['add_off_day'] = lang('add_off_day');
     $this->data['js_lang']['off_day_added'] = lang('off_day_added');
     $this->data['js_lang']['update_leave_off'] = lang('update_leave_off');
     $this->data['js_lang']['leave_off_updated'] = lang('leave_off_updated');
     $this->data['js_lang']['leave_off_deleted'] = lang('leave_off_deleted');
     $this->data['js_lang']['revoke_leave_off'] = lang('revoke_leave_off');
     $this->data['js_lang']['cannot_find_leave_request'] = lang('cannot_find_leave_request');
     $this->data['js_lang']['view_leave_request'] = lang('view_leave_request');
     $this->data['js_lang']['reason_for_reject'] = lang('reason_for_reject');
     $this->data['js_lang']['leave_rejected'] = lang('leave_rejected');
     $this->data['js_lang']['sure_approve'] = lang('sure_approve');
     $this->data['js_lang']['reason_for_revoke'] = lang('reason_for_revoke');
     $this->data['js_lang']['leave_revoked_successfully'] = lang('leave_revoked_successfully');
     $this->data['js_lang']['apply_leave'] = lang('apply_leave');
     $this->data['js_lang']['submit_for_approval'] = lang('submit_for_approval');
     if (!_can('Master Settings')) {
         $this->_set_flashdata(lang('centre_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #7
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('relation_model');
     if (!_can("Relation")) {
         redirect(site_url("dashboard"));
     }
 }
Пример #8
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('module_model');
     $this->form_validation->set_error_delimiters('<label class="control-label h5" for="inputError">', '</label>');
     if (!_can("Module")) {
         redirect(site_url("dashboard"));
     }
 }
Пример #9
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('blog_model');
     $this->load->library('pagination');
     if (!_can("Blog")) {
         redirect(site_url("dashboard"));
     }
 }
Пример #10
0
 function __construct()
 {
     parent::__construct();
     $this->load->model(array('receipts_model', 'variables/variables_model', 'levels/levels_model'));
     $this->data['js_lang']['server_error'] = lang('server_error');
     if (!_can('Receipt')) {
         $this->_set_flashdata(lang('receipt_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #11
0
 function __construct()
 {
     parent::__construct();
     $this->append_javascript($this->data['theme_path'] . 'jui/js/jquery.ui.spinner.min.js');
     $this->load->model(array('centre/centre_model', 'user/user_model', 'work_profile_model'));
     if (!_can('Leave Configuration')) {
         $this->_set_flashdata('Leave Management: Permission Denied', 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #12
0
 function __construct()
 {
     parent::__construct();
     $this->load->model(array('centre_model', 'rc_type_model', 'rc_category_model'));
     $this->breadcrumb->append_crumb(lang('centre'), site_url('centre'));
     $this->load->library('pagination');
     if (!_can("Center")) {
         redirect(site_url("dashboard"));
     }
 }
Пример #13
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('Year_term_model');
     $this->breadcrumb->append_crumb(lang('year_term'), site_url('year_term'));
     if (!_can('Year-term Management')) {
         $this->_set_flashdata(lang('year_term_management_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #14
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('slo/Slo_model', 'levels/levels_model', 'sow/Sow_model', 'assessment/assessment_model', 'variables/variables_model', 'subject/subject_Model'));
     $this->breadcrumb->append_crumb('SLO', site_url('slo'));
     if (!_can('Curriculum Planning') and !_can('Curriculum View')) {
         $this->_set_flashdata(lang('summary_of_learning_objective_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #15
0
 function __construct()
 {
     parent::__construct();
     $this->breadcrumb->append_crumb(lang('variables'), site_url('variables/index/payment_type'));
     $this->breadcrumb->append_crumb(lang('Payment_method_fields'));
     $this->load->model('variables_model');
     if (!_can('Variables Management')) {
         $this->_set_flashdata(lang('variables_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #16
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('centre_model');
     $this->breadcrumb->append_crumb(lang('centre'), site_url('centre'));
     $this->append_javascript('/modules/admin/centre/js/centre.js');
     if (!_can('Centre Management')) {
         $this->_set_flashdata(lang('centre_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #17
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('lesson_record_model', 'sow/sow_model', 'subject/subject_model', 'levels/levels_model', 'classes/classes_model', 'user/user_model'));
     $this->append_javascript($this->data['theme_path'] . 'plugins/uploadifive/jquery.uploadifive.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/uploadifive/uploadifive.css');
     $this->breadcrumb->append_crumb(lang('lesson_record'), site_url('lesson_record'));
     if (!_can('Create Lesson Record') and !_can('Approve Lesson Record')) {
         $this->_set_flashdata(lang('lesson_records_permission_denied', 'error'));
         redirect(site_url('dashboard'));
     }
 }
Пример #18
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('report_model');
     $this->breadcrumb->append_crumb(lang('report'), site_url('report'));
     if (!_can('View Reports')) {
         $this->_set_flashdata(lang('permmssion_denied'), 'error');
         redirect(site_url('dashboard'));
     }
     $this->append_javascript('themes/backend/plugins/chosen/chosen.jquery.js');
     $this->append_stylesheet('themes/backend/plugins/chosen/chosen.css');
 }
Пример #19
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('claim_release_model');
     $this->load->library('form_validation');
     $this->append_javascript($this->data['theme_path'] . 'plugins/datatables/jquery.dataTables.min.js');
     $this->data['js_lang']['are_you_sure_you_want_to_delete_this_class'] = lang('are_you_sure_you_want_to_delete_this_class');
     $this->data['js_lang']['class_added_successfully'] = lang('class_added_successfully');
     if (!_can('Claim-Release Management')) {
         $this->_set_flashdata(lang('claim_release_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #20
0
 public function loadsingleblog($userid, $blog_id)
 {
     $data = null;
     if (_is("GR Admin")) {
         $this->db->select('*');
         $data = $this->db->where('id', $blog_id)->get('blog')->row();
     } else {
         if (_can("Blog")) {
             $this->db->select('*');
             $data = $this->db->where('user_id', $userid)->where('id', $blog_id)->get('blog')->row();
         }
     }
     return $data;
 }
Пример #21
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('progress_report_model', 'child/child_model', 'subject/subject_model', 'levels/levels_model', 'classes/classes_model', 'assessment/assessment_model'));
     $this->append_javascript($this->data['theme_path'] . 'plugins/uploadifive/jquery.uploadifive.js');
     $this->append_stylesheet($this->data['theme_path'] . 'plugins/uploadifive/uploadifive.css');
     $this->append_javascript($this->data['theme_path'] . 'plugins/datatables/jquery.dataTables.min.js');
     $this->breadcrumb->append_crumb(lang('progress_report'), site_url('progress_report'));
     $this->data['js_lang']['progress_report_updated_successfully'] = lang('progress_report_updated_successfully');
     if (!_can('Progress Report Submission') and !_can('Progress Report Approval')) {
         $this->_set_flashdata(lang('progress_report_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #22
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('attendance_model');
     $this->load->model('user_role/user_role_model');
     $this->append_javascript($this->data['theme_path'] . 'js/jquery.ui.widget.js');
     $this->breadcrumb->append_crumb(lang('attendance'), site_url('attendance'));
     if ($this->data['current_controller_method'] != 'attendance_mail_notification') {
         if (!_can('Attendance (Centre-Level)') and !_can('Attendance (Class-Level)')) {
             $this->_set_flashdata(lang('permission_denied'), 'error');
             redirect(site_url('dashboard'));
         }
     }
 }
Пример #23
0
 function __construct()
 {
     parent::__construct();
     $this->breadcrumb->append_crumb(lang('levels'));
     $this->load->model('levels_model');
     $this->load->library('form_validation');
     $this->append_javascript('/modules/admin/levels/js/level.js');
     $this->data['js_lang']['confirm_delete'] = lang('are_you_sure_you_want_to_delete_this_level');
     $this->data['js_lang']['level_added_successfully'] = lang('level_added_successfully');
     $this->data['js_lang']['level_updated_successfully'] = lang('level_updated_successfully');
     if (!_can('Level Management')) {
         $this->_set_flashdata(lang('levels_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     }
 }
Пример #24
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('levels/levels_model', 'sow_model', 'subject/subject_model', 'task_model'));
     $this->breadcrumb->append_crumb('Task', site_url('task'));
     if (!_can('Curriculum Planning') and !_can('Curriculum Uploading') and !_can('Curriculum View')) {
         $this->_set_flashdata(lang('summary_of_learning_objective_permission_denied'));
         redirect(site_url('dashboard'));
     } else {
         if (_can('Curriculum View') and !in_array($this->data['current_controller_method'], array('index', 'view_sows'))) {
             $this->_set_flashdata(lang('summary_of_learning_objective_permission_denied'));
             redirect(site_url('dashboard'));
         }
     }
 }
Пример #25
0
 public function delete_log($id)
 {
     $event = $this->Event_log_model->getFromId($id);
     if (!$event) {
         show_error('Event Log not found');
     } else {
         if (!_can('Event Log (Account-Level)') and (!_can('Event Log (Centre-Level)') or $event->centre_id != $this->current_centre_role->centre_id)) {
             $this->_set_flashdata(lang('event_log_permission_denied'));
             redirect(site_url('dashboard'));
         } else {
             $this->Event_log_model->deleteWhere(array('event_log_id' => $id), IMS_DB_PREFIX . 'eventlog_variable');
             $this->Event_log_model->deleteRow($id);
             echo json_encode(array('status' => 'true'));
         }
     }
 }
Пример #26
0
 function __construct()
 {
     parent::__construct();
     $this->load->model('parents_model');
     $this->load->library('form_validation');
     $this->breadcrumb->append_crumb(lang('subscriber'), site_url('parents'));
     $this->append_javascript($this->data['theme_path'] . 'plugins/datatables/jquery.dataTables.min.js');
     $this->data['js_lang']['associated_children'] = lang('associated_children');
     $this->data['js_lang']['remove_child_from_parent'] = lang('remove_child_from_parent');
     $this->data['js_lang']['no_log_recorded_yet'] = lang('no_log_recorded_yet');
     $this->data['js_lang']['activated_successfully'] = lang('activated_successfully');
     $this->data['js_lang']['suspended_successfully'] = lang('suspended_successfully');
     $this->data['js_lang']['parent_login_logs'] = lang('parent_login_logs');
     if (!_can('Subscriber Management')) {
         $this->_set_flashdata(lang('subscriber_management_permmssion_denied'));
         redirect(site_url('dashboard'));
     }
 }
Пример #27
0
 function index()
 {
     if (_can("Customer")) {
         if ($this->input->post()) {
             $this->form_validation->set_rules('customer', 'Name', 'trim|required|is_unique[benefactors.customer_id]');
             $this->form_validation->set_rules('benefactor', 'Benefactor Type', 'required');
             if ($this->form_validation->run() === TRUE) {
                 if ($this->customers_model->add_benefactor(array('customer_id' => $this->input->post('customer', TRUE), 'benefactor_type' => $this->input->post('benefactor', TRUE)))) {
                     $this->session->set_flashdata('message', array("class" => "success", "message" => "New Benefactor added"));
                     redirect(current_url());
                 }
             } else {
                 $this->session->set_flashdata('message', array("class" => "error", "message" => "Failed to add new benefactor"));
                 redirect(current_url());
             }
         }
     }
     $this->data['customers'] = $this->customers_model->getcustomers();
     $this->data['benefactors'] = $this->customers_model->getbenefactors();
     $this->gr_template->build('benefactors', $this->data);
 }
Пример #28
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model(array('Slo_model', 'levels/levels_model', 'subject/subject_model'));
     $this->breadcrumb->append_crumb(lang('slo'), site_url('slo'));
     $this->data['js_lang']['confirm_delete_slo'] = lang('confirm_delete_slo');
     $this->data['js_lang']['slo_deleted'] = lang('slo_deleted');
     $this->data['js_lang']['slo_added'] = lang('slo_added');
     $this->data['js_lang']['slo_updated'] = lang('slo_updated');
     $this->data['js_lang']['create_slo'] = lang('create_slo');
     $this->data['js_lang']['update_slo'] = lang('update_slo');
     $this->data['js_lang']['confirm_delete'] = lang('confirm_delete');
     if (!_can('Curriculum Planning') and !_can('Curriculum View')) {
         $this->_set_flashdata(lang('summary_of_learning_objective_permission_denied'), 'error');
         redirect(site_url('dashboard'));
     } else {
         if (!_can('Curriculum Planning') and !in_array($this->data['current_controller_method'], array('index', 'content_change_with_level', 'view_slo'))) {
             $this->_set_flashdata(lang('summary_of_learning_objective_permission_denied'), 'error');
             redirect(site_url('dashboard'));
         }
     }
     //$this->selected_year_term_id = $this->curriculum_year_term;
 }
><?php 
        echo $centre->name;
        ?>
</option>
                                <?php 
    }
    ?>
                                </select>
                        <?php 
    echo form_error('centre_id');
    ?>
 </div>
                        </div>
                    <?php 
}
if (_can('Course Management (Centre-Level)')) {
    ?>
                        <div class="da-form-row">
                            <label><?php 
    echo "Centre";
    ?>
  <span class="required">*</span></label>
                            <div class="da-form-item small" >
                                <select name="centre_id" disabled="disabled" >


                                    <option value="<?php 
    echo $current_centre;
    ?>
"  ><?php 
    echo $current_centre;
Пример #30
0
</a></li>
                        <?php 
if (_can('Update center profile')) {
    ?>
                        <li><a href="<?php 
    echo site_url('account/centre_profile');
    ?>
"><?php 
    echo lang('centre_information');
    ?>
</a></li>
                        <?php 
}
?>
                        <?php 
if (_can('Master Settings')) {
    ?>
                        <li><a href="<?php 
    echo site_url('account/settings');
    ?>
"><?php 
    echo lang('settings');
    ?>
</a></li>
                        <?php 
}
?>
                        <li><a href="<?php 
echo site_url('account/change_password');
?>
"><?php