Guest User

Untitled

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /**
  2. * Searches for the link field to use, if present.
  3. */
  4. public function find_link_field() {
  5. foreach ($this->view->display_handler->getHandlers('field') as $id => $handler) {
  6. if($handler->fieldDefinition->type == 'link') { //-> protected properties!!
  7. return $id;
  8. break;
  9. }
  10. }
Add Comment
Please, Sign In to add comment