You are here

sexybookmarks.inc in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.2

File

plugins/content_types/sexybookmarks.inc
View source
<?php

/**
 * @file
 * CTools Content Types plugin for SexyBookmarks.
 */
$plugin = array(
  'title' => t('SexyBookmarks'),
  'description' => t('Show the SexyBookmarks widget.'),
  'required context' => new ctools_context_required(t('Node'), 'node'),
  'category' => t('SexyBookmarks'),
  'defaults' => array(
    'profile' => 'default',
  ),
);

/**
 * Render callback.
 */
function sexybookmarks_sexybookmarks_content_type_render($subtype, $conf, $args, $context) {
  if (isset($context->data) && !empty($conf['profile'])) {
    $node = clone $context->data;
    $block = new stdClass();
    $block->module = 'sexybookmarks';
    $block->delta = $node->nid;
    $block->title = t('Sexybookmarks');
    $block->content = theme('sexybookmarks', array(
      'profile' => $conf['profile'],
      'url' => url("node/{$node->nid}", array(
        'absolute' => TRUE,
      )),
      'title' => $node->title,
    ));
    return $block;
  }
  return;
}

/**
 * Form callback.
 */
function sexybookmarks_sexybookmarks_content_type_edit_form($form, &$form_state) {
  $options = array(
    '' => '- None -',
  );
  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'),
    '#options' => $options,
    '#default_value' => isset($form_state['conf']['profile']) ? $form_state['conf']['profile'] : '',
  );
  return $form;
}
function sexybookmarks_sexybookmarks_content_type_edit_form_submit($form, &$form_state) {

  // Copy everything from our defaults.
  foreach (array_keys($form_state['plugin']['defaults']) as $key) {
    $form_state['conf'][$key] = $form_state['values'][$key];
  }
}