You are here

function publishcontent_views_handler_field_node_link::option_definition in Publish Content 6

Same name and namespace in other branches
  1. 7 publishcontent_views_handler_field_node_link.inc \publishcontent_views_handler_field_node_link::option_definition()

File

./publishcontent_views_handler_field_node_link.inc, line 15

Class

publishcontent_views_handler_field_node_link
Field handler to present a link node publish.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['publish'] = $options['unpublish'] = array(
    'default' => '',
    'translatable' => TRUE,
  );
  return $options;
}