twitter_pull_box.inc in Twitter Pull 7
File
plugins/twitter_pull_box.inc
View source
<?php
class twitter_pull_box extends boxes_box {
public function options_defaults() {
return array(
'title' => '',
'search' => '',
'max_results' => 20,
'additional_classes' => '',
);
}
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;
}
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,
'title' => $title,
'subject' => $title,
'content' => $content,
);
}
}