diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 9f23f6344a..0a0a7fc11c 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-08-26 Raúl Mateos + + * godmode/reporting/reporting_builder.list_items.php: Added code to + show text if no items found, instead the table header. + 2010-08-25 Sergio Martin * pandoradb.sql diff --git a/pandora_console/godmode/reporting/reporting_builder.list_items.php b/pandora_console/godmode/reporting/reporting_builder.list_items.php index 02d97b1e73..99cff0695a 100644 --- a/pandora_console/godmode/reporting/reporting_builder.list_items.php +++ b/pandora_console/godmode/reporting/reporting_builder.list_items.php @@ -122,45 +122,48 @@ if($moduleFilter != 0) { $items = get_db_all_rows_sql('SELECT * FROM treport_content WHERE ' . $where . ' AND id_report = ' . $idReport . ' ORDER BY `order` LIMIT ' . $offset . ', ' . $config["block_size"]); $countItems = get_db_sql('SELECT COUNT(id_rc) FROM treport_content WHERE ' . $where . ' AND id_report = ' . $idReport); +$table = null; + +if ($items){ + $table->width = '100%'; + $table->head[0] = '' . __('S.') . ''; + $table->head[1] = __('Type'); + if (!$filterEnable) { + $table->head[1] .= ' ' . + ''; + } + $table->head[2] = __('Agent'); + if (!$filterEnable) { + $table->head[2] .= ' ' . + ''; + } + $table->head[3] = __('Module'); + if (!$filterEnable) { + $table->head[3] .= ' ' . + ''; + } + $table->head[4] = __('Period'); + $table->head[5] = __('Description'); + $table->head[6] = '' . __('O.') . ''; + + $table->align[6] = 'center'; +} else { + echo '

'. __('No items') . '
'; +} + $lastPage = true; + if (((($offset == 0) && ($config["block_size"] > $countItems)) || + ($countItems >= ($config["block_size"] + $offset))) && + ($countItems > $config["block_size"])) { + $lastPage = false; + } + + $count = 0; + $rowPair = true; if ($items === false) { $items = array(); } -$table = null; -$table->width = '100%'; -$table->head[0] = '' . __('S.') . ''; -$table->head[1] = __('Type'); -if (!$filterEnable) { - $table->head[1] .= ' ' . - ''; -} -$table->head[2] = __('Agent'); -if (!$filterEnable) { - $table->head[2] .= ' ' . - ''; -} -$table->head[3] = __('Module'); -if (!$filterEnable) { - $table->head[3] .= ' ' . - ''; -} -$table->head[4] = __('Period'); -$table->head[5] = __('Description'); -$table->head[6] = '' . __('O.') . ''; - -$table->align[6] = 'center'; - -$lastPage = true; -if (((($offset == 0) && ($config["block_size"] > $countItems)) || - ($countItems >= ($config["block_size"] + $offset))) && - ($countItems > $config["block_size"])) { - $lastPage = false; -} - -$count = 0; -$rowPair = true; - foreach ($items as $item) { if ($rowPair) $table->rowclass[$count] = 'rowPair';