class twitter_pull_box in Twitter Pull 7
Same name and namespace in other branches
- 6.2 plugins/twitter_pull_box.inc \twitter_pull_box
- 7.2 plugins/twitter_pull_box.inc \twitter_pull_box
Simple custom text box.
Hierarchy
- class \boxes_box
- class \twitter_pull_box
Expanded class hierarchy of twitter_pull_box
1 string reference to 'twitter_pull_box'
- twitter_pull_boxes_plugins in ./
twitter_pull.module - Implements hook_boxes_plugins().
File
- plugins/
twitter_pull_box.inc, line 6
View source
class twitter_pull_box extends boxes_box {
/**
* Implementation of boxes_box::options_defaults().
*/
public function options_defaults() {
return array(
'title' => '',
'search' => '',
'max_results' => 20,
'additional_classes' => '',
);
}
/**
* Implementation of boxes_box::options_form().
*/
public function options_form(&$form_state) {
$form = array();
$form['search'] = array(
'#type' => 'textfield',
'#title' => t('Twitter search'),
'#required' => TRUE,
'#default_value' => $this->options['search'],
'#description' => t("The twitter user, hashtag, or search for the tweet to show in this box. Use a '@' for a user or a list, eg '@user', '@user/list'; a '#' for a hashtag, 'eg '#hashtag'; and no prefix for a search."),
);
$form['max_results'] = array(
'#type' => 'textfield',
'#title' => t('Max tweets'),
'#default_value' => $this->options['max_results'],
'#description' => t('How many tweets you want the box to display at any one time.'),
);
return $form;
}
/**
* Implementation of boxes_box::render().
*/
public function render() {
$content = twitter_pull_render($this->options['search'], NULL, $this->options['max_results']);
$title = isset($this->title) ? $this->title : NULL;
return array(
'delta' => $this->delta,
// Crucial.
'title' => $title,
'subject' => $title,
'content' => $content,
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
boxes_box:: |
static | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | property | ||
boxes_box:: |
public | function | Returns the block cache settings for this box. Subclasses can override this to perform more intricate operations around deciding the cache settings of the specific box instance. | |
boxes_box:: |
public | function | Delete a box. | |
boxes_box:: |
public static | function | Instantiate, populate and return a box object. | |
boxes_box:: |
public static | function | Load existing box by its unique identifier $delta. | |
boxes_box:: |
public static | function | Reset the boxes cache. | |
boxes_box:: |
public | function | Save a box. | |
boxes_box:: |
public | function | Declare if the box should use a multistep form for the create form. | |
boxes_box:: |
protected | function | Create a new box. | |
twitter_pull_box:: |
public | function |
Implementation of boxes_box::options_defaults(). Overrides boxes_box:: |
|
twitter_pull_box:: |
public | function |
Implementation of boxes_box::options_form(). Overrides boxes_box:: |
|
twitter_pull_box:: |
public | function |
Implementation of boxes_box::render(). Overrides boxes_box:: |