You are here

function theme_nd_permalink_permalink in Display Suite 6.3

File

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

Code

function theme_nd_permalink_permalink($element) {
  return l('Permanent link to this page', 'node/' . $element['object']->nid, array(
    'absolute' => TRUE,
    'alias' => TRUE,
  ));
}