Skip to content

Commit

Permalink
Allowing to refer to external links from a modeladmin
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Thaleikis committed Sep 10, 2015
1 parent b4a0c96 commit 8a9e075
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
67 changes: 67 additions & 0 deletions code/GridFieldExternalLink.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?php
/**
* Displays a link to an external source referenced 'external link'
*/
class GridFieldExternalLink extends GridFieldDataColumns {

/**
* Add a column for the actions
*
* @param type $gridField
* @param array $columns
*/
public function augmentColumns($gridField, &$columns) {
if(!in_array('Actions', $columns)) $columns[] = 'Actions';
}

/**
* Return any special attributes that will be used for FormField::create_tag()
*
* @param GridField $gridField
* @param DataObject $record
* @param string $columnName
* @return array
*/
public function getColumnAttributes($gridField, $record, $columnName) {
return array('class' => 'col-buttons');
}

/**
* Add the title
*
* @param GridField $gridField
* @param string $columnName
* @return array
*/
public function getColumnMetadata($gridField, $columnName) {
if($columnName == 'Actions') {
return array('title' => '');
}
return array();
}

/**
* Which columns are handled by this component
*
* @param type $gridField
* @return type
*/
public function getColumnsHandled($gridField) {
return array('Actions');
}

/**
* @param GridField $gridField
* @param DataObject $record
* @param string $columnName
*
* @return string - the HTML for the column
*/
public function getColumnContent($gridField, $record, $columnName) {
$data = new ArrayData(array(
'Link' => method_exists($record, 'getExternalLink') ? $record->getExternalLink() : $record->ExternalLink
));

return $data->renderWith('GridFieldExternalLink');
}
}
1 change: 1 addition & 0 deletions templates/GridFieldExternalLink.ss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href="$Link" target="_blank" title="<% _t('GridFieldExtensions.ExternalLink','External Link') %>"><% _t('GridFieldExtensions.ExternalLink','External Link') %></a>

0 comments on commit 8a9e075

Please sign in to comment.