2011-09-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* godmode/modules/manage_network_templates.php: Added description titles
        to action buttons on this view.

        Fixes: #3373300



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4921 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-09-06 15:25:35 +00:00
parent 9e9891b401
commit 1d8aab6afe
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2011-09-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/modules/manage_network_templates.php: Added description titles
to action buttons on this view.
Fixes: #3373300
2011-09-06 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/pandora_forms.css

View File

@ -189,12 +189,12 @@ foreach ($result as $row) {
$row["id_np"],'', true,
array ('onclick' => 'if (!confirm(\''.__('Are you sure?').'\')) return false;'));
$data[2] .= html_print_input_image ("export_profile", "images/lightning_go.png",
$row["id_np"], '', true);
$row["id_np"], '', true, array('title' => 'Export'));
$data[2] = '<a href="index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates' .
'&delete_profile=1&delete_profile=' . $row['id_np'] . '" ' .
'onclick="if (!confirm(\''.__('Are you sure?').'\')) return false;">' . html_print_image("images/cross.png", true) . '</a>';
'onclick="if (!confirm(\''.__('Are you sure?').'\')) return false;">' . html_print_image("images/cross.png", true, array('title' => __('Delete'))) . '</a>';
$data[2] .= '&nbsp;&nbsp;<a href="index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates' .
'&export_profile=' . $row['id_np'] . '">' . html_print_image("images/lightning_go.png", true) . '</a>' .
'&export_profile=' . $row['id_np'] . '">' . html_print_image("images/lightning_go.png", true, array('title' => __('Export'))) . '</a>' .
html_print_checkbox_extended ('delete_multiple[]', $row['id_np'], false, false, '', 'class="check_delete"', true);
array_push ($table->data, $data);
@ -227,4 +227,4 @@ function check_all_checkboxes() {
$(".check_delete").attr('checked', false);
}
}
</script>
</script>