boxes_simple.inc in Boxes 6
File
plugins/boxes_simple.inc
View source
<?php
class boxes_simple extends boxes_box {
public function options_defaults() {
return array(
'body' => '',
'format' => FILTER_FORMAT_DEFAULT,
);
}
public function options_form() {
if (filter_access($this->options['format'])) {
$form = array();
$form['body'] = array(
'#type' => 'textarea',
'#title' => t('Box body'),
'#default_value' => $this->options['body'],
'#rows' => 6,
'#description' => t('The content of the block as shown to the user.'),
);
$form['format'] = filter_form($this->options['format']);
return $form;
}
}
public function render() {
$content = '';
if (!empty($this->options['body']) && isset($this->options['format'])) {
$content = check_markup($this->options['body'], $this->options['format'], FALSE);
}
$title = isset($this->title) ? check_plain($this->title) : NULL;
return array(
'delta' => $this->delta,
'title' => $title,
'subject' => $title,
'content' => $content,
);
}
}