for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package elemental
*/
class ElementalGridFieldUnlinkAction extends GridFieldDeleteAction {
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
public function getColumnContent($gridField, $record, $columnName) {
if(!$record->canDelete()) return;
if(!$record instanceof ElementVirtualLinked) {
$field = GridField_FormAction::create($gridField,
'UnlinkRelation'.$record->ID,
false,
'unlinkrelation',
array('RecordID' => $record->ID)
)
->addExtraClass('gridfield-button-unlink')
->setAttribute('title', _t('GridAction.UnlinkRelation', "Unlink"))
->setAttribute('data-icon', 'chain--minus');
return $field->Field();
}
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.