You are here

function nd_permalink_theme in Display Suite 6.3

Implements hook_theme().

File

modules/nd/modules/nd_permalink/nd_permalink.module, line 32
The ND Permalink module provides a new field for node displays which renders a field containing a permalink to the current object.

Code

function nd_permalink_theme($existing, $type, $theme, $path) {
  return array(
    'nd_permalink_permalink' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}