mode = $mode; Session::set('CommentsSection', $mode); parent::__construct($controller, $name, $sourceClass, $fieldList, $detailFormFields, $sourceFilter, $sourceSort, $sourceJoin); $this->Markable = true; $this->setPageSize(15); // search $search = isset($_REQUEST['CommentSearch']) ? Convert::raw2sql($_REQUEST['CommentSearch']) : null; if(!empty($_REQUEST['CommentSearch'])) { $this->sourceFilter[] = "( \"Name\" LIKE '%$search%' OR \"Comment\" LIKE '%$search%')"; } } function FieldHolder() { $ret = parent::FieldHolder(); Requirements::javascript(CMS_DIR . '/javascript/CommentTableField.js'); return $ret; } function Items() { $this->sourceItems = $this->sourceItems(); if(!$this->sourceItems) { return null; } $pageStart = (isset($_REQUEST['ctf'][$this->Name()]['start']) && is_numeric($_REQUEST['ctf'][$this->Name()]['start'])) ? $_REQUEST['ctf'][$this->Name()]['start'] : 0; $this->sourceItems->setPageLimits($pageStart, $this->pageSize, $this->totalCount); $output = new DataObjectSet(); foreach($this->sourceItems as $pageIndex=>$item) { $output->push(Object::create('CommentTableField_Item',$item, $this, $pageStart+$pageIndex)); } return $output; } function HasSpamButton() { return $this->mode == 'approved' || $this->mode == 'unmoderated'; } function HasApproveButton() { return $this->mode == 'unmoderated'; } function HasHamButton() { return $this->mode == 'spam'; } function SearchForm() { $query = isset($_GET['CommentSearch']) ? $_GET['CommentSearch'] : null; $searchFields = new FieldGroup( new TextField('CommentSearch', _t('CommentTableField.SEARCH', 'Search'), $query), new HiddenField("ctf[ID]",'',$this->mode), new HiddenField('CommentFieldName','',$this->name) ); $actionFields = new LiteralField('CommentFilterButton',''); $fieldContainer = new FieldGroup( $searchFields, $actionFields ); return $fieldContainer->FieldHolder(); } } /** * Single row of a {@link CommentTableField} * @package cms * @subpackage comments */ class CommentTableField_Item extends ComplexTableField_Item { function HasSpamButton() { return $this->parent()->HasSpamButton(); } function HasApproveButton() { return $this->parent()->HasApproveButton(); } function HasHamButton() { return $this->parent()->HasHamButton(); } } ?>