views_handler_field_node_sexybookmarks.inc in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2
Same filename and directory in other branches
Field handler to present SexyBookmarks.
File
includes/views_handler_field_node_sexybookmarks.incView source
<?php
/**
* @file
* Field handler to present SexyBookmarks.
*/
class views_handler_field_node_sexybookmarks extends views_handler_field {
function construct() {
parent::construct();
$this->additional_fields['nid'] = 'nid';
$this->additional_fields['title'] = 'title';
}
function option_definition() {
$options = parent::option_definition();
$options['profile'] = array(
'default' => 'default',
'translatable' => FALSE,
);
return $options;
}
function options_form(&$form, &$form_state) {
$options = array();
ctools_include('export');
foreach (ctools_export_crud_load_all('sexybookmarks_profiles') as $profile) {
if (empty($profile->disabled)) {
$options[$profile->name] = $profile->name;
}
}
$form['profile'] = array(
'#type' => 'select',
'#title' => t('SexyBookmarks profile'),
'#empty_value' => '',
'#options' => $options,
'#default_value' => $this->options['profile'],
);
parent::options_form($form, $form_state);
}
function query() {
$this
->ensure_my_table();
$this
->add_additional_fields();
}
function render($values) {
return theme('sexybookmarks', array(
'url' => url('node/' . $this
->get_value($values, 'nid'), array(
'absolute' => TRUE,
)),
'title' => $this
->get_value($values, 'title'),
'profile' => $this->options['profile'],
));
}
}
Classes
Name | Description |
---|---|
views_handler_field_node_sexybookmarks | @file Field handler to present SexyBookmarks. |