|
|
Drupal example source code file (views_handler_field_locale_link_edit.inc)
The views_handler_field_locale_link_edit.inc Drupal example source code<?php // $Id: views_handler_field_locale_link_edit.inc,v 1.1 2009/02/20 23:02:09 merlinofchaos Exp $ /** * Field handler to present a link to edit a translation. */ class views_handler_field_locale_link_edit extends views_handler_field { function construct() { parent::construct(); $this->additional_fields['lid'] = 'lid'; } function option_definition() { $options = parent::option_definition(); $options['text'] = array('default' => '', 'translatable' => TRUE); return $options; } function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); $form['text'] = array( '#type' => 'textfield', '#title' => t('Text to display'), '#default_value' => $this->options['text'], ); } function query() { $this->ensure_my_table(); $this->add_additional_fields(); } function render($values) { // Ensure user has access to edit translations. if (!user_access('translate interface')) { return; } $text = !empty($this->options['text']) ? $this->options['text'] : t('edit'); return l($text, 'admin/build/translate/edit/' . $values->{$this->aliases['lid']}, array('query' => drupal_get_destination())); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_locale_link_edit.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.