You are here

function node_gallery_config_operations in Node Gallery 6

Same name and namespace in other branches
  1. 6.2 node_gallery.admin.inc \node_gallery_config_operations()
1 call to node_gallery_config_operations()
node_gallery_config_list in ./node_gallery.admin.inc
@file Node gallery admin file.

File

./node_gallery.admin.inc, line 26
Node gallery admin file.

Code

function node_gallery_config_operations($config) {
  $items[] = array(
    'title' => t('Edit'),
    'href' => 'admin/build/node_gallery/edit/' . $config->gallery_type,
  );
  $items[] = array(
    'title' => t('Delete'),
    'href' => 'admin/build/node_gallery/delete/' . $config->gallery_type,
  );
  return $items;
}