Skip to content

Commit

Permalink
Merge pull request #103 from spekulatius/external-link
Browse files Browse the repository at this point in the history
Allowing to refer to external links from a modeladmin
  • Loading branch information
nyeholt committed Sep 15, 2015
2 parents 6845da4 + 4c8009a commit 78f59a9
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
68 changes: 68 additions & 0 deletions code/GridFieldExternalLink.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?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' => $record->hasMethod('getExternalLink') ? $record->getExternalLink() : $record->ExternalLink,
'Text' => $record->hasMethod('getExternalLinkText') ? $record->getExternalLinkText() : 'External Link'
));

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="$Text">$Text</a>

0 comments on commit 78f59a9

Please sign in to comment.