2011-12-06 01:56:24 +01:00
|
|
|
<?php
|
2015-04-17 02:07:51 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* Displays a {@link SS_List} in a grid format.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* GridField is a field that takes an SS_List and displays it in an table with rows and columns.
|
|
|
|
* It reminds of the old TableFields but works with SS_List types and only loads the necessary
|
|
|
|
* rows from the list.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* The minimum configuration is to pass in name and title of the field and a SS_List.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2011-12-06 01:56:24 +01:00
|
|
|
* <code>
|
|
|
|
* $gridField = new GridField('ExampleGrid', 'Example grid', new DataList('Page'));
|
|
|
|
* </code>
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2011-12-06 01:56:24 +01:00
|
|
|
* @see SS_List
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2013-11-29 05:12:47 +01:00
|
|
|
* @package forms
|
2013-05-20 12:18:07 +02:00
|
|
|
* @subpackage fields-gridfield
|
2013-10-10 23:08:59 +02:00
|
|
|
* @property GridState_Data $State The gridstate of this object
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
class GridField extends FormField {
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $allowed_actions = array(
|
2012-02-09 11:16:29 +01:00
|
|
|
'index',
|
2015-05-12 10:37:51 +02:00
|
|
|
'gridFieldAlterAction',
|
2011-12-06 01:56:24 +01:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Data source.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-09-26 23:34:00 +02:00
|
|
|
* @var SS_List
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
protected $list = null;
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Class name of the DataObject that the GridField will display.
|
|
|
|
*
|
|
|
|
* Defaults to the value of $this->list->dataClass.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-09-26 23:34:00 +02:00
|
|
|
* @var string
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
protected $modelClassName = '';
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Current state of the GridField.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-09-26 23:34:00 +02:00
|
|
|
* @var GridState
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
protected $state = null;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* @var GridFieldConfig
|
|
|
|
*/
|
|
|
|
protected $config = null;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Components list.
|
2013-03-04 22:29:27 +01:00
|
|
|
*
|
|
|
|
* @var array
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
protected $components = array();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* Internal dispatcher for column handlers.
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* Keys are column names and values are GridField_ColumnProvider objects.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @var array
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
protected $columnDispatch = null;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-05-29 00:06:30 +02:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Map of callbacks for custom data fields.
|
2013-03-04 22:29:27 +01:00
|
|
|
*
|
|
|
|
* @var array
|
2012-05-29 00:06:30 +02:00
|
|
|
*/
|
|
|
|
protected $customDataFields = array();
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2013-03-04 22:29:27 +01:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2012-05-21 07:47:14 +02:00
|
|
|
protected $name = '';
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param string $title
|
|
|
|
* @param SS_List $dataList
|
|
|
|
* @param GridFieldConfig $config
|
|
|
|
*/
|
|
|
|
public function __construct($name, $title = null, SS_List $dataList = null, GridFieldConfig $config = null) {
|
|
|
|
parent::__construct($name, $title, null);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-05-21 07:47:14 +02:00
|
|
|
$this->name = $name;
|
2011-12-06 01:56:24 +01:00
|
|
|
|
|
|
|
if($dataList) {
|
|
|
|
$this->setList($dataList);
|
|
|
|
}
|
2012-07-04 05:03:13 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(!$config) {
|
|
|
|
$config = GridFieldConfig_Base::create();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->setConfig($config);
|
2014-08-15 08:53:05 +02:00
|
|
|
$this->state = new GridState($this);
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
$this->addExtraClass('ss-gridfield');
|
2012-02-09 11:16:29 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @param SS_HTTPRequest $request
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function index($request) {
|
2012-02-09 11:16:29 +01:00
|
|
|
return $this->gridFieldAlterAction(array(), $this->getForm(), $request);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Set the modelClass (data object) that this field will get it column headers from.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* If no $displayFields has been set, the display fields will be $summary_fields.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-04-19 01:25:37 +02:00
|
|
|
* @see GridFieldDataColumns::getDisplayFields()
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* @param string $modelClassName
|
|
|
|
*
|
|
|
|
* @return $this
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
public function setModelClass($modelClassName) {
|
|
|
|
$this->modelClassName = $modelClassName;
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
return $this;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Returns a data class that is a DataObject type that this GridField should look like.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2011-12-06 01:56:24 +01:00
|
|
|
* @return string
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* @throws LogicException
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
public function getModelClass() {
|
2015-05-12 10:37:51 +02:00
|
|
|
if($this->modelClassName) {
|
|
|
|
return $this->modelClassName;
|
|
|
|
}
|
|
|
|
|
2015-10-31 21:10:29 +01:00
|
|
|
if($this->list && $this->list->hasMethod('dataClass')) {
|
2012-01-10 04:59:28 +01:00
|
|
|
$class = $this->list->dataClass();
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
if($class) {
|
|
|
|
return $class;
|
|
|
|
}
|
2012-01-10 04:59:28 +01:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
throw new LogicException(
|
|
|
|
'GridField doesn\'t have a modelClassName, so it doesn\'t know the columns of this grid.'
|
|
|
|
);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return GridFieldConfig
|
|
|
|
*/
|
|
|
|
public function getConfig() {
|
|
|
|
return $this->config;
|
|
|
|
}
|
2012-07-04 05:03:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param GridFieldConfig $config
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @return $this
|
2012-07-04 05:03:13 +02:00
|
|
|
*/
|
|
|
|
public function setConfig(GridFieldConfig $config) {
|
|
|
|
$this->config = $config;
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2017-05-09 07:38:19 +02:00
|
|
|
if (!$this->config->getComponentByType('GridState_Component')) {
|
|
|
|
$this->config->addComponent(new GridState_Component());
|
|
|
|
}
|
|
|
|
|
2012-07-04 05:03:13 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @return ArrayList
|
|
|
|
*/
|
2012-05-18 03:35:53 +02:00
|
|
|
public function getComponents() {
|
|
|
|
return $this->config->getComponents();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Cast an arbitrary value with the help of a $castingDefinition.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-01-07 04:48:49 +01:00
|
|
|
* @todo refactor this into GridFieldComponent
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* @param mixed $value
|
|
|
|
* @param string|array $castingDefinition
|
|
|
|
*
|
|
|
|
* @return mixed
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
public function getCastedValue($value, $castingDefinition) {
|
2015-05-12 10:37:51 +02:00
|
|
|
$castingParams = array();
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
if(is_array($castingDefinition)) {
|
|
|
|
$castingParams = $castingDefinition;
|
|
|
|
array_shift($castingParams);
|
|
|
|
$castingDefinition = array_shift($castingDefinition);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-04-17 02:07:51 +02:00
|
|
|
if(strpos($castingDefinition, '->') === false) {
|
2011-12-06 01:56:24 +01:00
|
|
|
$castingFieldType = $castingDefinition;
|
2012-03-27 06:57:42 +02:00
|
|
|
$castingField = DBField::create_field($castingFieldType, $value);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
return call_user_func_array(array($castingField, 'XML'), $castingParams);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
list($castingFieldType, $castingMethod) = explode('->', $castingDefinition);
|
|
|
|
|
|
|
|
$castingField = DBField::create_field($castingFieldType, $value);
|
|
|
|
|
|
|
|
return call_user_func_array(array($castingField, $castingMethod), $castingParams);
|
2014-08-15 08:53:05 +02:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Set the data source.
|
2011-12-06 01:56:24 +01:00
|
|
|
*
|
|
|
|
* @param SS_List $list
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* @return $this
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
public function setList(SS_List $list) {
|
|
|
|
$this->list = $list;
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get the data source.
|
2011-12-06 01:56:24 +01:00
|
|
|
*
|
|
|
|
* @return SS_List
|
|
|
|
*/
|
|
|
|
public function getList() {
|
|
|
|
return $this->list;
|
|
|
|
}
|
2012-09-06 13:42:48 +02:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get the data source after applying every {@link GridField_DataManipulator} to it.
|
2012-09-06 13:42:48 +02:00
|
|
|
*
|
|
|
|
* @return SS_List
|
|
|
|
*/
|
|
|
|
public function getManipulatedList() {
|
|
|
|
$list = $this->getList();
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-09-06 13:42:48 +02:00
|
|
|
foreach($this->getComponents() as $item) {
|
2012-12-08 12:20:20 +01:00
|
|
|
if($item instanceof GridField_DataManipulator) {
|
2012-09-06 13:42:48 +02:00
|
|
|
$list = $item->getManipulatedData($this, $list);
|
|
|
|
}
|
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-09-06 13:42:48 +02:00
|
|
|
return $list;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get the current GridState_Data or the GridState.
|
2011-12-06 01:56:24 +01:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param bool $getData
|
2013-03-04 22:29:27 +01:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @return GridState_Data|GridState
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2013-03-04 22:29:27 +01:00
|
|
|
public function getState($getData = true) {
|
2011-12-06 01:56:24 +01:00
|
|
|
if($getData) {
|
|
|
|
return $this->state->getData();
|
|
|
|
}
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
return $this->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Returns the whole gridfield rendered with all the attached components.
|
|
|
|
*
|
|
|
|
* @param array $properties
|
2011-12-06 01:56:24 +01:00
|
|
|
*
|
2015-06-20 12:11:08 +02:00
|
|
|
* @return HTMLText
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2012-04-11 08:07:55 +02:00
|
|
|
public function FieldHolder($properties = array()) {
|
2012-03-06 16:58:13 +01:00
|
|
|
Requirements::css(THIRDPARTY_DIR . '/jquery-ui-themes/smoothness/jquery-ui.css');
|
2012-03-24 04:38:57 +01:00
|
|
|
Requirements::css(FRAMEWORK_DIR . '/css/GridField.css');
|
2012-03-06 16:58:13 +01:00
|
|
|
|
|
|
|
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');
|
2012-03-24 04:38:57 +01:00
|
|
|
Requirements::javascript(FRAMEWORK_DIR . '/thirdparty/jquery-ui/jquery-ui.js');
|
2012-03-06 16:58:13 +01:00
|
|
|
Requirements::javascript(THIRDPARTY_DIR . '/json-js/json2.js');
|
2012-03-24 04:38:57 +01:00
|
|
|
Requirements::javascript(FRAMEWORK_DIR . '/javascript/i18n.js');
|
|
|
|
Requirements::add_i18n_javascript(FRAMEWORK_DIR . '/javascript/lang');
|
2012-03-06 16:58:13 +01:00
|
|
|
Requirements::javascript(THIRDPARTY_DIR . '/jquery-entwine/dist/jquery.entwine-dist.js');
|
2012-03-24 04:38:57 +01:00
|
|
|
Requirements::javascript(FRAMEWORK_DIR . '/javascript/GridField.js');
|
2012-03-06 16:58:13 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
$columns = $this->getColumns();
|
|
|
|
|
2012-09-06 13:42:48 +02:00
|
|
|
$list = $this->getManipulatedList();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
$content = array(
|
2015-05-12 10:37:51 +02:00
|
|
|
'before' => '',
|
|
|
|
'after' => '',
|
|
|
|
'header' => '',
|
|
|
|
'footer' => '',
|
2011-12-06 01:56:24 +01:00
|
|
|
);
|
|
|
|
|
2014-08-15 08:53:05 +02:00
|
|
|
foreach($this->getComponents() as $item) {
|
2011-12-06 01:56:24 +01:00
|
|
|
if($item instanceof GridField_HTMLProvider) {
|
|
|
|
$fragments = $item->getHTMLFragments($this);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
if($fragments) {
|
|
|
|
foreach($fragments as $fragmentKey => $fragmentValue) {
|
|
|
|
$fragmentKey = strtolower($fragmentKey);
|
|
|
|
|
|
|
|
if(!isset($content[$fragmentKey])) {
|
|
|
|
$content[$fragmentKey] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$content[$fragmentKey] .= $fragmentValue . "\n";
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
foreach($content as $contentKey => $contentValue) {
|
|
|
|
$content[$contentKey] = trim($contentValue);
|
2012-03-08 07:04:07 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
// Replace custom fragments and check which fragments are defined. Circular dependencies
|
|
|
|
// are detected by disallowing any item to be deferred more than 5 times.
|
|
|
|
|
|
|
|
$fragmentDefined = array(
|
|
|
|
'header' => true,
|
|
|
|
'footer' => true,
|
|
|
|
'before' => true,
|
|
|
|
'after' => true,
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-03-08 07:04:07 +01:00
|
|
|
reset($content);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
while(list($contentKey, $contentValue) = each($content)) {
|
|
|
|
if(preg_match_all('/\$DefineFragment\(([a-z0-9\-_]+)\)/i', $contentValue, $matches)) {
|
2012-03-08 07:04:07 +01:00
|
|
|
foreach($matches[1] as $match) {
|
|
|
|
$fragmentName = strtolower($match);
|
|
|
|
$fragmentDefined[$fragmentName] = true;
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$fragment = '';
|
|
|
|
|
|
|
|
if(isset($content[$fragmentName])) {
|
|
|
|
$fragment = $content[$fragmentName];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the fragment still has a fragment definition in it, when we should defer
|
|
|
|
// this item until later.
|
|
|
|
|
2012-03-08 07:04:07 +01:00
|
|
|
if(preg_match('/\$DefineFragment\(([a-z0-9\-_]+)\)/i', $fragment, $matches)) {
|
2015-05-12 10:37:51 +02:00
|
|
|
if(isset($fragmentDeferred[$contentKey]) && $fragmentDeferred[$contentKey] > 5) {
|
|
|
|
throw new LogicException(sprintf(
|
|
|
|
'GridField HTML fragment "%s" and "%s" appear to have a circular dependency.',
|
|
|
|
$fragmentName,
|
|
|
|
$matches[1]
|
|
|
|
));
|
2012-03-08 22:04:25 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
unset($content[$contentKey]);
|
|
|
|
|
|
|
|
$content[$contentKey] = $contentValue;
|
|
|
|
|
|
|
|
if(!isset($fragmentDeferred[$contentKey])) {
|
|
|
|
$fragmentDeferred[$contentKey] = 0;
|
2012-03-08 22:04:25 +01:00
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
$fragmentDeferred[$contentKey]++;
|
|
|
|
|
2012-03-08 07:04:07 +01:00
|
|
|
break;
|
|
|
|
} else {
|
2015-05-12 10:37:51 +02:00
|
|
|
$content[$contentKey] = preg_replace(
|
|
|
|
sprintf('/\$DefineFragment\(%s\)/i', $fragmentName),
|
|
|
|
$fragment,
|
|
|
|
$content[$contentKey]
|
|
|
|
);
|
2012-03-08 07:04:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
// Check for any undefined fragments, and if so throw an exception.
|
|
|
|
// While we're at it, trim whitespace off the elements.
|
|
|
|
|
|
|
|
foreach($content as $contentKey => $contentValue) {
|
|
|
|
if(empty($fragmentDefined[$contentKey])) {
|
|
|
|
throw new LogicException(sprintf(
|
|
|
|
'GridField HTML fragment "%s" was given content, but not defined. Perhaps there is a supporting GridField component you need to add?',
|
|
|
|
$contentKey
|
|
|
|
));
|
2012-09-26 23:34:00 +02:00
|
|
|
}
|
2012-03-08 07:04:07 +01:00
|
|
|
}
|
|
|
|
|
2013-03-08 15:04:51 +01:00
|
|
|
$total = count($list);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-03-08 20:25:21 +01:00
|
|
|
if($total > 0) {
|
2012-03-08 22:20:53 +01:00
|
|
|
$rows = array();
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
foreach($list as $index => $record) {
|
2014-05-23 10:55:20 +02:00
|
|
|
if($record->hasMethod('canView') && !$record->canView()) {
|
2012-03-08 01:58:53 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-04-20 04:38:49 +02:00
|
|
|
|
2012-03-06 00:36:32 +01:00
|
|
|
$rowContent = '';
|
2015-04-20 04:38:49 +02:00
|
|
|
|
2012-03-08 01:58:53 +01:00
|
|
|
foreach($this->getColumns() as $column) {
|
2012-03-06 00:36:32 +01:00
|
|
|
$colContent = $this->getColumnContent($record, $column);
|
2015-04-17 02:07:51 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
// Null means this columns should be skipped altogether.
|
|
|
|
|
2015-04-17 02:07:51 +02:00
|
|
|
if($colContent === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-03-06 00:36:32 +01:00
|
|
|
$colAttributes = $this->getColumnAttributes($record, $column);
|
2015-04-17 02:07:51 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$rowContent .= $this->newCell(
|
|
|
|
$total,
|
|
|
|
$index,
|
|
|
|
$record,
|
|
|
|
$colAttributes,
|
|
|
|
$colContent
|
|
|
|
);
|
2012-03-06 00:36:32 +01:00
|
|
|
}
|
2015-04-17 02:07:51 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$rowAttributes = $this->getRowAttributes($total, $index, $record);
|
2015-04-20 04:38:49 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$rows[] = $this->newRow($total, $index, $record, $rowAttributes, $rowContent);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-03-08 22:20:53 +01:00
|
|
|
$content['body'] = implode("\n", $rows);
|
2014-08-15 08:53:05 +02:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
// Display a message when the grid field is empty.
|
|
|
|
|
|
|
|
if(empty($content['body'])) {
|
|
|
|
$cell = FormField::create_tag(
|
|
|
|
'td',
|
|
|
|
array(
|
|
|
|
'colspan' => count($columns),
|
|
|
|
),
|
|
|
|
_t('GridField.NoItemsFound', 'No items found')
|
|
|
|
);
|
|
|
|
|
|
|
|
$row = FormField::create_tag(
|
2012-03-06 00:36:32 +01:00
|
|
|
'tr',
|
2015-05-12 10:37:51 +02:00
|
|
|
array(
|
|
|
|
'class' => 'ss-gridfield-item ss-gridfield-no-items',
|
|
|
|
),
|
|
|
|
$cell
|
2012-02-07 20:55:54 +01:00
|
|
|
);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
$content['body'] = $row;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$header = $this->getOptionalTableHeader($content);
|
|
|
|
$body = $this->getOptionalTableBody($content);
|
|
|
|
$footer = $this->getOptionalTableFooter($content);
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2012-02-23 15:17:39 +01:00
|
|
|
$this->addExtraClass('ss-gridfield field');
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
$fieldsetAttributes = array_diff_key(
|
2014-08-15 08:53:05 +02:00
|
|
|
$this->getAttributes(),
|
2015-05-12 10:37:51 +02:00
|
|
|
array(
|
|
|
|
'value' => false,
|
|
|
|
'type' => false,
|
|
|
|
'name' => false,
|
|
|
|
)
|
2012-02-07 20:55:54 +01:00
|
|
|
);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
$fieldsetAttributes['data-name'] = $this->getName();
|
|
|
|
|
|
|
|
$tableId = null;
|
|
|
|
|
|
|
|
if($this->id) {
|
|
|
|
$tableId = $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tableAttributes = array(
|
|
|
|
'id' => $tableId,
|
2012-02-23 15:17:39 +01:00
|
|
|
'class' => 'ss-gridfield-table',
|
2012-01-10 01:05:20 +01:00
|
|
|
'cellpadding' => '0',
|
2015-05-12 10:37:51 +02:00
|
|
|
'cellspacing' => '0',
|
2011-12-06 01:56:24 +01:00
|
|
|
);
|
2012-05-17 03:22:24 +02:00
|
|
|
|
2012-12-13 16:33:58 +01:00
|
|
|
if($this->getDescription()) {
|
|
|
|
$content['after'] .= FormField::create_tag(
|
2014-08-15 08:53:05 +02:00
|
|
|
'span',
|
|
|
|
array('class' => 'description'),
|
2012-12-13 16:33:58 +01:00
|
|
|
$this->getDescription()
|
|
|
|
);
|
|
|
|
}
|
2012-05-17 03:22:24 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$table = FormField::create_tag(
|
|
|
|
'table',
|
|
|
|
$tableAttributes,
|
|
|
|
$header . "\n" . $footer . "\n" . $body
|
|
|
|
);
|
|
|
|
|
2016-03-27 11:51:46 +02:00
|
|
|
$field = DBField::create_field('HTMLText', FormField::create_tag(
|
2015-05-12 10:37:51 +02:00
|
|
|
'fieldset',
|
|
|
|
$fieldsetAttributes,
|
|
|
|
$content['before'] . $table . $content['after']
|
2015-06-20 12:11:08 +02:00
|
|
|
));
|
2016-03-27 11:51:46 +02:00
|
|
|
$field->setOptions(array('shortcodes' => false));
|
|
|
|
|
|
|
|
return $field;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-04-17 02:07:51 +02:00
|
|
|
/**
|
|
|
|
* @param int $total
|
|
|
|
* @param int $index
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param array $attributes
|
|
|
|
* @param string $content
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-04-20 04:38:49 +02:00
|
|
|
protected function newCell($total, $index, $record, $attributes, $content) {
|
2015-04-17 02:07:51 +02:00
|
|
|
return FormField::create_tag(
|
|
|
|
'td',
|
|
|
|
$attributes,
|
|
|
|
$content
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $total
|
|
|
|
* @param int $index
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param array $attributes
|
|
|
|
* @param string $content
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-04-20 04:38:49 +02:00
|
|
|
protected function newRow($total, $index, $record, $attributes, $content) {
|
|
|
|
return FormField::create_tag(
|
|
|
|
'tr',
|
|
|
|
$attributes,
|
|
|
|
$content
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $total
|
|
|
|
* @param int $index
|
|
|
|
* @param DataObject $record
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getRowAttributes($total, $index, $record) {
|
|
|
|
$rowClasses = $this->newRowClasses($total, $index, $record);
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'class' => implode(' ', $rowClasses),
|
|
|
|
'data-id' => $record->ID,
|
|
|
|
'data-class' => $record->ClassName,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $total
|
|
|
|
* @param int $index
|
|
|
|
* @param DataObject $record
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function newRowClasses($total, $index, $record) {
|
2015-04-17 02:07:51 +02:00
|
|
|
$classes = array('ss-gridfield-item');
|
|
|
|
|
|
|
|
if($index == 0) {
|
|
|
|
$classes[] = 'first';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($index == $total - 1) {
|
|
|
|
$classes[] = 'last';
|
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($index % 2) {
|
|
|
|
$classes[] = 'even';
|
|
|
|
} else {
|
|
|
|
$classes[] = 'odd';
|
|
|
|
}
|
2016-04-12 16:48:02 +02:00
|
|
|
|
|
|
|
$this->extend('updateNewRowClasses', $classes, $total, $index, $record);
|
2015-04-17 02:07:51 +02:00
|
|
|
|
2015-04-20 04:38:49 +02:00
|
|
|
return $classes;
|
2015-04-17 02:07:51 +02:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @param array $properties
|
|
|
|
*
|
2015-06-20 12:11:08 +02:00
|
|
|
* @return HTMLText
|
2015-05-12 10:37:51 +02:00
|
|
|
*/
|
2012-04-11 07:33:36 +02:00
|
|
|
public function Field($properties = array()) {
|
2016-03-27 11:55:58 +02:00
|
|
|
$this->extend('onBeforeRender', $this);
|
2012-04-11 08:07:55 +02:00
|
|
|
return $this->FieldHolder($properties);
|
2012-03-08 07:11:51 +01:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2012-02-09 11:16:29 +01:00
|
|
|
public function getAttributes() {
|
2015-05-12 10:37:51 +02:00
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array(
|
|
|
|
'data-url' => $this->Link(),
|
|
|
|
)
|
|
|
|
);
|
2012-02-09 11:16:29 +01:00
|
|
|
}
|
|
|
|
|
2012-01-07 05:18:00 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get the columns of this GridField, they are provided by attached GridField_ColumnProvider.
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getColumns() {
|
2011-12-06 01:56:24 +01:00
|
|
|
$columns = array();
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-05-18 03:35:53 +02:00
|
|
|
foreach($this->getComponents() as $item) {
|
2011-12-06 01:56:24 +01:00
|
|
|
if($item instanceof GridField_ColumnProvider) {
|
|
|
|
$item->augmentColumns($this, $columns);
|
|
|
|
}
|
|
|
|
}
|
2012-02-07 23:21:34 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
return $columns;
|
|
|
|
}
|
2012-01-07 05:18:00 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get the value from a column.
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param string $column
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @return string
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
public function getColumnContent($record, $column) {
|
2012-01-07 04:48:49 +01:00
|
|
|
if(!$this->columnDispatch) {
|
|
|
|
$this->buildColumnDispatch();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-10 04:24:00 +01:00
|
|
|
if(!empty($this->columnDispatch[$column])) {
|
2015-05-12 10:37:51 +02:00
|
|
|
$content = '';
|
|
|
|
|
2012-02-07 23:21:34 +01:00
|
|
|
foreach($this->columnDispatch[$column] as $handler) {
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @var GridField_ColumnProvider $handler
|
|
|
|
*/
|
2012-02-07 23:21:34 +01:00
|
|
|
$content .= $handler->getColumnContent($this, $record, $column);
|
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-02-07 23:21:34 +01:00
|
|
|
return $content;
|
2011-12-06 01:56:24 +01:00
|
|
|
} else {
|
2015-05-12 10:37:51 +02:00
|
|
|
throw new InvalidArgumentException(sprintf(
|
|
|
|
'Bad column "%s"',
|
|
|
|
$column
|
|
|
|
));
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-05-29 00:06:30 +02:00
|
|
|
/**
|
|
|
|
* Add additional calculated data fields to be used on this GridField
|
2013-03-04 22:29:27 +01:00
|
|
|
*
|
|
|
|
* @param array $fields a map of fieldname to callback. The callback will
|
2015-04-17 02:07:51 +02:00
|
|
|
* be passed the record as an argument.
|
2012-05-29 00:06:30 +02:00
|
|
|
*/
|
|
|
|
public function addDataFields($fields) {
|
2013-03-04 22:29:27 +01:00
|
|
|
if($this->customDataFields) {
|
|
|
|
$this->customDataFields = array_merge($this->customDataFields, $fields);
|
|
|
|
} else {
|
|
|
|
$this->customDataFields = $fields;
|
|
|
|
}
|
2012-05-29 00:06:30 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-05-29 00:06:30 +02:00
|
|
|
/**
|
|
|
|
* Get the value of a named field on the given record.
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
|
|
|
* Use of this method ensures that any special rules around the data for this gridfield are
|
|
|
|
* followed.
|
|
|
|
*
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param string $fieldName
|
|
|
|
*
|
|
|
|
* @return mixed
|
2012-05-29 00:06:30 +02:00
|
|
|
*/
|
|
|
|
public function getDataFieldValue($record, $fieldName) {
|
|
|
|
if(isset($this->customDataFields[$fieldName])) {
|
|
|
|
$callback = $this->customDataFields[$fieldName];
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-05-29 00:06:30 +02:00
|
|
|
return $callback($record);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-06-15 13:33:34 +02:00
|
|
|
if($record->hasMethod('relField')) {
|
|
|
|
return $record->relField($fieldName);
|
2015-05-12 10:37:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if($record->hasMethod($fieldName)) {
|
2012-06-15 13:33:34 +02:00
|
|
|
return $record->$fieldName();
|
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
return $record->$fieldName;
|
2012-05-29 00:06:30 +02:00
|
|
|
}
|
2012-01-07 05:18:00 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get extra columns attributes used as HTML attributes.
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @param DataObject $record
|
|
|
|
* @param string $column
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @return array
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @throws LogicException
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
public function getColumnAttributes($record, $column) {
|
2012-01-07 04:48:49 +01:00
|
|
|
if(!$this->columnDispatch) {
|
|
|
|
$this->buildColumnDispatch();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-10 04:24:00 +01:00
|
|
|
if(!empty($this->columnDispatch[$column])) {
|
2015-05-12 10:37:51 +02:00
|
|
|
$attributes = array();
|
2012-02-07 23:21:34 +01:00
|
|
|
|
|
|
|
foreach($this->columnDispatch[$column] as $handler) {
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @var GridField_ColumnProvider $handler
|
|
|
|
*/
|
|
|
|
$columnAttributes = $handler->getColumnAttributes($this, $record, $column);
|
2012-02-07 23:21:34 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(is_array($columnAttributes)) {
|
|
|
|
$attributes = array_merge($attributes, $columnAttributes);
|
|
|
|
continue;
|
2012-09-26 23:34:00 +02:00
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
throw new LogicException(sprintf(
|
|
|
|
'Non-array response from %s::getColumnAttributes().',
|
|
|
|
get_class($handler)
|
|
|
|
));
|
2012-01-07 04:48:49 +01:00
|
|
|
}
|
2012-02-07 23:21:34 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
return $attributes;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
throw new InvalidArgumentException(sprintf(
|
|
|
|
'Bad column "%s"',
|
|
|
|
$column
|
|
|
|
));
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-01-07 05:18:00 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Get metadata for a column.
|
|
|
|
*
|
|
|
|
* @example "array('Title'=>'Email address')"
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @param string $column
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @return array
|
2015-05-12 10:37:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @throws LogicException
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
public function getColumnMetadata($column) {
|
2012-01-07 04:48:49 +01:00
|
|
|
if(!$this->columnDispatch) {
|
|
|
|
$this->buildColumnDispatch();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-10 04:24:00 +01:00
|
|
|
if(!empty($this->columnDispatch[$column])) {
|
2015-05-12 10:37:51 +02:00
|
|
|
$metaData = array();
|
2012-02-07 23:21:34 +01:00
|
|
|
|
|
|
|
foreach($this->columnDispatch[$column] as $handler) {
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @var GridField_ColumnProvider $handler
|
|
|
|
*/
|
|
|
|
$columnMetaData = $handler->getColumnMetadata($this, $column);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(is_array($columnMetaData)) {
|
|
|
|
$metaData = array_merge($metaData, $columnMetaData);
|
|
|
|
continue;
|
2012-09-26 23:34:00 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
throw new LogicException(sprintf(
|
|
|
|
'Non-array response from %s::getColumnMetadata().',
|
|
|
|
get_class($handler)
|
|
|
|
));
|
2012-01-07 04:48:49 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
return $metaData;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
throw new InvalidArgumentException(sprintf(
|
|
|
|
'Bad column "%s"',
|
|
|
|
$column
|
|
|
|
));
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-01-07 05:18:00 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Return how many columns the grid will have.
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
public function getColumnCount() {
|
2015-05-12 10:37:51 +02:00
|
|
|
if(!$this->columnDispatch) {
|
|
|
|
$this->buildColumnDispatch();
|
|
|
|
}
|
|
|
|
|
2014-08-15 08:53:05 +02:00
|
|
|
return count($this->columnDispatch);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-01-07 04:48:49 +01:00
|
|
|
|
2012-01-07 05:18:00 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Build an columnDispatch that maps a GridField_ColumnProvider to a column for reference later.
|
2012-01-07 05:18:00 +01:00
|
|
|
*/
|
2011-12-06 01:56:24 +01:00
|
|
|
protected function buildColumnDispatch() {
|
|
|
|
$this->columnDispatch = array();
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2012-05-18 03:35:53 +02:00
|
|
|
foreach($this->getComponents() as $item) {
|
2011-12-06 01:56:24 +01:00
|
|
|
if($item instanceof GridField_ColumnProvider) {
|
|
|
|
$columns = $item->getColumnsHandled($this);
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
foreach($columns as $column) {
|
2012-02-07 23:21:34 +01:00
|
|
|
$this->columnDispatch[$column][] = $item;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
2012-02-07 23:21:34 +01:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-02-09 11:16:29 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* This is the action that gets executed when a GridField_AlterAction gets clicked.
|
|
|
|
*
|
|
|
|
* @param array $data
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param Form $form
|
|
|
|
* @param SS_HTTPRequest $request
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2014-08-15 08:53:05 +02:00
|
|
|
* @return string
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2012-01-09 06:21:14 +01:00
|
|
|
public function gridFieldAlterAction($data, $form, SS_HTTPRequest $request) {
|
2012-02-09 11:16:29 +01:00
|
|
|
$data = $request->requestVars();
|
2016-02-17 03:09:21 +01:00
|
|
|
|
|
|
|
// Protection against CSRF attacks
|
|
|
|
$token = $this
|
|
|
|
->getForm()
|
|
|
|
->getSecurityToken();
|
|
|
|
if(!$token->checkRequest($request)) {
|
|
|
|
$this->httpError(400, _t("Form.CSRF_FAILED_MESSAGE",
|
|
|
|
"There seems to have been a technical problem. Please click the back button, ".
|
|
|
|
"refresh your browser, and try again."
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2014-03-04 23:47:02 +01:00
|
|
|
$name = $this->getName();
|
2012-02-09 11:16:29 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$fieldData = null;
|
|
|
|
|
|
|
|
if(isset($data[$name])) {
|
|
|
|
$fieldData = $data[$name];
|
|
|
|
}
|
|
|
|
|
2012-02-09 11:16:29 +01:00
|
|
|
$state = $this->getState(false);
|
2013-03-04 22:29:27 +01:00
|
|
|
|
|
|
|
if(isset($fieldData['GridState'])) {
|
|
|
|
$state->setValue($fieldData['GridState']);
|
|
|
|
}
|
2012-02-09 11:16:29 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
foreach($data as $dataKey => $dataValue) {
|
|
|
|
if(preg_match('/^action_gridFieldAlterAction\?StateID=(.*)/', $dataKey, $matches)) {
|
|
|
|
$stateChange = Session::get($matches[1]);
|
2012-02-09 11:16:29 +01:00
|
|
|
$actionName = $stateChange['actionName'];
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$arguments = array();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(isset($stateChange['args'])) {
|
|
|
|
$arguments = $stateChange['args'];
|
|
|
|
};
|
2012-01-09 06:21:14 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
$html = $this->handleAlterAction($actionName, $arguments, $data);
|
2012-01-09 06:21:14 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($html) {
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-09 06:21:14 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($request->getHeader('X-Pjax') === 'CurrentField') {
|
|
|
|
return $this->FieldHolder();
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
return $form->forTemplate();
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-01-07 05:18:00 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Pass an action on the first GridField_ActionProvider that matches the $actionName.
|
2012-01-07 05:18:00 +01:00
|
|
|
*
|
|
|
|
* @param string $actionName
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param mixed $arguments
|
|
|
|
* @param array $data
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2013-06-21 00:32:08 +02:00
|
|
|
* @return mixed
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2012-01-07 05:18:00 +01:00
|
|
|
* @throws InvalidArgumentException
|
|
|
|
*/
|
2015-05-12 10:37:51 +02:00
|
|
|
public function handleAlterAction($actionName, $arguments, $data) {
|
2011-12-06 01:56:24 +01:00
|
|
|
$actionName = strtolower($actionName);
|
2015-05-12 10:37:51 +02:00
|
|
|
|
2012-05-18 03:35:53 +02:00
|
|
|
foreach($this->getComponents() as $component) {
|
2015-05-12 10:37:51 +02:00
|
|
|
if($component instanceof GridField_ActionProvider) {
|
|
|
|
$actions = array_map('strtolower', (array) $component->getActions($this));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(in_array($actionName, $actions)) {
|
|
|
|
return $component->handleAction($this, $actionName, $arguments, $data);
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
2015-05-12 10:37:51 +02:00
|
|
|
|
|
|
|
throw new InvalidArgumentException(sprintf(
|
|
|
|
'Can\'t handle action "%s"',
|
|
|
|
$actionName
|
|
|
|
));
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-09 06:47:31 +01:00
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Custom request handler that will check component handlers before proceeding to the default
|
|
|
|
* implementation.
|
|
|
|
*
|
|
|
|
* @todo copy less code from RequestHandler.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param SS_HTTPRequest $request
|
|
|
|
* @param DataModel $model
|
|
|
|
*
|
|
|
|
* @return array|RequestHandler|SS_HTTPResponse|string|void
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @throws SS_HTTPResponse_Exception
|
2012-01-09 06:47:31 +01:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleRequest(SS_HTTPRequest $request, DataModel $model) {
|
2012-01-09 06:47:31 +01:00
|
|
|
if($this->brokenOnConstruct) {
|
2015-05-12 10:37:51 +02:00
|
|
|
user_error(
|
|
|
|
sprintf(
|
|
|
|
"parent::__construct() needs to be called on %s::__construct()",
|
|
|
|
__CLASS__
|
|
|
|
),
|
|
|
|
E_USER_WARNING
|
|
|
|
);
|
2012-01-09 06:47:31 +01:00
|
|
|
}
|
|
|
|
|
2015-04-30 01:04:08 +02:00
|
|
|
$this->setRequest($request);
|
2012-05-01 04:43:52 +02:00
|
|
|
$this->setDataModel($model);
|
2012-02-09 11:16:29 +01:00
|
|
|
|
2015-04-30 01:04:08 +02:00
|
|
|
$fieldData = $this->getRequest()->requestVar($this->getName());
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($fieldData && isset($fieldData['GridState'])) {
|
|
|
|
$this->getState(false)->setValue($fieldData['GridState']);
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
foreach($this->getComponents() as $component) {
|
|
|
|
if($component instanceof GridField_URLHandler && $urlHandlers = $component->getURLHandlers($this)) {
|
|
|
|
foreach($urlHandlers as $rule => $action) {
|
|
|
|
if($params = $request->match($rule, true)) {
|
|
|
|
// Actions can reference URL parameters.
|
|
|
|
// e.g. '$Action/$ID/$OtherID' → '$Action'
|
|
|
|
|
|
|
|
if($action[0] == '$') {
|
|
|
|
$action = $params[substr($action, 1)];
|
2012-01-09 06:47:31 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(!method_exists($component, 'checkAccessAction') || $component->checkAccessAction($action)) {
|
|
|
|
if(!$action) {
|
|
|
|
$action = "index";
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if(!is_string($action)) {
|
|
|
|
throw new LogicException(sprintf(
|
|
|
|
'Non-string method name: %s',
|
|
|
|
var_export($action, true)
|
|
|
|
));
|
|
|
|
}
|
2012-09-26 23:34:00 +02:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
try {
|
|
|
|
$result = $component->$action($this, $request);
|
|
|
|
} catch(SS_HTTPResponse_Exception $responseException) {
|
|
|
|
$result = $responseException->getResponse();
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($result instanceof SS_HTTPResponse && $result->isError()) {
|
|
|
|
return $result;
|
2012-01-09 06:47:31 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($this !== $result && !$request->isEmptyPattern($rule) && is_object($result) && $result instanceof RequestHandler) {
|
|
|
|
$returnValue = $result->handleRequest($request, $model);
|
|
|
|
|
|
|
|
if(is_array($returnValue)) {
|
|
|
|
throw new LogicException(
|
|
|
|
'GridField_URLHandler handlers can\'t return arrays'
|
|
|
|
);
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
return $returnValue;
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
if($request->allParsed()) {
|
|
|
|
return $result;
|
|
|
|
}
|
2012-01-09 06:47:31 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
return $this->httpError(
|
|
|
|
404,
|
|
|
|
sprintf(
|
|
|
|
'I can\'t handle sub-URLs of a %s object.',
|
|
|
|
get_class($result)
|
|
|
|
)
|
|
|
|
);
|
2012-01-09 06:47:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-01-09 06:47:31 +01:00
|
|
|
return parent::handleRequest($request, $model);
|
|
|
|
}
|
2013-01-15 12:41:25 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2013-01-15 12:41:25 +01:00
|
|
|
public function saveInto(DataObjectInterface $record) {
|
|
|
|
foreach($this->getComponents() as $component) {
|
|
|
|
if($component instanceof GridField_SaveHandler) {
|
|
|
|
$component->handleSave($this, $record);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
/**
|
|
|
|
* @param array $content
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getOptionalTableHeader(array $content) {
|
|
|
|
if($content['header']) {
|
|
|
|
return FormField::create_tag(
|
|
|
|
'thead', array(), $content['header']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $content
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getOptionalTableBody(array $content) {
|
|
|
|
if($content['body']) {
|
|
|
|
return FormField::create_tag(
|
|
|
|
'tbody', array('class' => 'ss-gridfield-items'), $content['body']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $content
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getOptionalTableFooter($content) {
|
|
|
|
if($content['footer']) {
|
|
|
|
return FormField::create_tag(
|
|
|
|
'tfoot', array(), $content['footer']
|
|
|
|
);
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
return '';
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
2015-05-12 10:37:51 +02:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* This class is the base class when you want to have an action that alters the state of the
|
|
|
|
* {@link GridField}, rendered as a button element.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @package forms
|
2013-05-20 12:18:07 +02:00
|
|
|
* @subpackage fields-gridfield
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2012-03-06 12:51:57 +01:00
|
|
|
class GridField_FormAction extends FormAction {
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* @var GridField
|
|
|
|
*/
|
|
|
|
protected $gridField;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
2014-08-15 08:53:05 +02:00
|
|
|
* @var array
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
protected $stateValues;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $args = array();
|
|
|
|
|
2013-03-04 22:29:27 +01:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $actionName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2012-03-06 16:58:13 +01:00
|
|
|
public $useButtonTag = true;
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
/**
|
|
|
|
* @param GridField $gridField
|
2013-06-21 00:32:08 +02:00
|
|
|
* @param string $name
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param string $title
|
2013-06-21 00:32:08 +02:00
|
|
|
* @param string $actionName
|
2014-08-15 08:53:05 +02:00
|
|
|
* @param array $args
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2012-03-06 16:58:13 +01:00
|
|
|
public function __construct(GridField $gridField, $name, $title, $actionName, $args) {
|
2011-12-06 01:56:24 +01:00
|
|
|
$this->gridField = $gridField;
|
|
|
|
$this->actionName = $actionName;
|
|
|
|
$this->args = $args;
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2012-03-06 16:58:13 +01:00
|
|
|
parent::__construct($name, $title);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Encode all non-word characters.
|
|
|
|
*
|
|
|
|
* @param string $value
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @return string
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
2015-05-12 10:37:51 +02:00
|
|
|
public function nameEncode($value) {
|
|
|
|
return (string) preg_replace_callback('/[^\w]/', array($this, '_nameEncode'), $value);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* @param array $match
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2015-05-12 10:37:51 +02:00
|
|
|
* @return string
|
2011-12-06 01:56:24 +01:00
|
|
|
*/
|
|
|
|
public function _nameEncode($match) {
|
2015-04-17 02:07:51 +02:00
|
|
|
return '%' . dechex(ord($match[0]));
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:29:27 +01:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-03-06 16:58:13 +01:00
|
|
|
public function getAttributes() {
|
2013-03-04 22:29:27 +01:00
|
|
|
// Store state in session, and pass ID to client side.
|
2011-12-06 01:56:24 +01:00
|
|
|
$state = array(
|
|
|
|
'grid' => $this->getNameFromParent(),
|
|
|
|
'actionName' => $this->actionName,
|
|
|
|
'args' => $this->args,
|
|
|
|
);
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2015-03-08 23:44:39 +01:00
|
|
|
// Ensure $id doesn't contain only numeric characters
|
2015-04-17 02:07:51 +02:00
|
|
|
$id = 'gf_' . substr(md5(serialize($state)), 0, 8);
|
2011-12-06 01:56:24 +01:00
|
|
|
Session::set($id, $state);
|
|
|
|
$actionData['StateID'] = $id;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-03-06 16:58:13 +01:00
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array(
|
2014-08-15 08:53:05 +02:00
|
|
|
// Note: This field needs to be less than 65 chars, otherwise Suhosin security patch
|
|
|
|
// will strip it from the requests
|
2015-04-17 02:07:51 +02:00
|
|
|
'name' => 'action_gridFieldAlterAction' . '?' . http_build_query($actionData),
|
2012-03-06 16:58:13 +01:00
|
|
|
'data-url' => $this->gridField->Link(),
|
|
|
|
)
|
|
|
|
);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-12 10:37:51 +02:00
|
|
|
* Calculate the name of the gridfield relative to the form.
|
2015-04-17 02:07:51 +02:00
|
|
|
*
|
2011-12-06 01:56:24 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getNameFromParent() {
|
|
|
|
$base = $this->gridField;
|
|
|
|
$name = array();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
do {
|
|
|
|
array_unshift($name, $base->getName());
|
|
|
|
$base = $base->getForm();
|
2015-04-17 02:07:51 +02:00
|
|
|
} while($base && !($base instanceof Form));
|
2013-03-04 22:29:27 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
return implode('.', $name);
|
|
|
|
}
|
|
|
|
}
|