View activators and their activated gridsquares by band and satellite type.
session->userdata('user_date_format')) {
// If Logged in and session exists
$custom_date_format = $this->session->userdata('user_date_format');
} else {
// Get Default date format from /config/cloudlog.php
$custom_date_format = $this->config->item('qso_date_format');
}
?>
input->post('band') != NULL) {
$vucc_grids = array();
if ($activators_vucc_array) {
foreach ($activators_vucc_array as $line) {
$vucc_grids[$line->call] = $line->vucc_grids;
}
}
if ($activators_array) {
$this->load->view('activators/component_table', array(
'activators_array' => $activators_array,
'vucc_grids' => $vucc_grids,
'custom_date_format' => $custom_date_format,
'band' => $this->input->post('band'),
'leogeo' => $this->input->post('leogeo')
));
}
else {
echo '
No activators found for the selected filters.
';
}
}
?>