You are here

function skinr_ui_skinr_operations in Skinr 6.2

Implementation of hook_skinr_operations().

File

./skinr_ui.admin.inc, line 162
Admin page callbacks for the skinr module.

Code

function skinr_ui_skinr_operations() {
  $operations = array(
    'delete' => array(
      'label' => t('Delete'),
      'callback' => NULL,
    ),
  );
  return $operations;
}