12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- class tripal_views_handler_field_entity_link_edit extends tripal_views_handler_field {
- function option_definition() {
- $options = parent::option_definition();
- $options['text'] = array('default' => '', 'translatable' => TRUE);
- return $options;
- }
- function options_form(&$form, &$form_state) {
- $form['text'] = array(
- '#type' => 'textfield',
- '#title' => t('Text to display'),
- '#default_value' => $this->options['text'],
- );
- parent::options_form($form, $form_state);
- // The path is set by render_link function so don't allow to set it.
- $form['alter']['path'] = array('#access' => FALSE);
- $form['alter']['external'] = array('#access' => FALSE);
- }
- function render($values) {
- if ($entity = $this->get_value($values)) {
- return $this->render_link($entity, $values);
- }
- }
- function render_link($entity, $values) {
- if (entity_access('edit', 'TripalEntity', $entity)) {
- $this->options['alter']['make_link'] = TRUE;
- $this->options['alter']['path'] = 'bio_data/' . $entity->id . '/edit';
- $text = !empty($this->options['text']) ? $this->options['text'] : t('view');
- return $text;
- }
- }
- }
|