- 🇦🇺Australia VladimirAus Brisbane, Australia
Drupal 7 is no loner supported.
Marking as outdated.
I've made a first token integration, first for global usage and per node type. It needs some work ie I have to look into comments, blocks and users titles.
First question: are there more people interested in this token integration?
--- sharethis.module (e1bd71e)
+++ sharethis.module (4cc09ea)
@@ -211,6 +211,24 @@
'#type' => 'checkbox',
'#default_value' => variable_get('sharethis_late_load', FALSE),
);
+ if (module_exists('token')) {
+ $form['advanced']['sharethis_title_global'] = array(
+ '#title' => t('Title'),
+ '#description' => t('You can use tokens to generate the title when sharing. By default the node title will be used.'),
+ '#type' => 'textfield',
+ '#default_value' => variable_get('sharethis_title_global', FALSE),
+ '#element_validate' => array('token_element_validate'),
+ '#token_type' => array('node')
+ );
+
+ $form['advanced']['token_help'] = array(
+ '#title' => t('Replacement patterns'),
+ '#theme' => 'token_tree',
+ '#token_types' => array('node'),
+ '#collapsible' => TRUE,
+ '#collapsed' => FALSE,
+ );
+ }
$form['advanced']['sharethis_twitter_suffix'] = array(
'#title' => t("Twitter Suffix"),
'#description' => t("Optionally append a Twitter handle, or text, so that you get pinged when someone shares an article. Example: <em>via @YourNameHere</em>"),
@@ -314,6 +332,17 @@
// Get the full path to insert into the Share Buttons.
$mPath = url($path_module, array('absolute'=>TRUE));
$mTitle = $node->title;
+ if(module_exists('token')){
+ // First check if token is available by content type
+ $_tokenTitle = variable_get('sharethis_title_' . $node->type, FALSE);
+ if($_tokenTitle == FALSE){
+ // Use global
+ $_tokenTitle = variable_get('sharethis_title_global', FALSE);
+ }
+ if($_tokenTitle != FALSE){
+ $mTitle = token_replace($_tokenTitle, array('node'=>$node), array('clear'=>TRUE));
+ }
+ }
// Only display the ShareThis buttons if this node fits all the requirements
if (strpos($data_options['nodeType'], $node->type) !== FALSE) { // Make sure this is the right type of node.
@@ -353,7 +382,50 @@
}
}
}
+/**
+ * hook_form_alter()
+ */
+function sharethis_form_node_type_form_alter(&$form, $form_state) {
+ if( module_exists('token')) { // sharethis allowed for this content type?
+ $_sharethisOptions = sharethis_get_options_array();
+ $nodeTypes = explode(',',$_sharethisOptions['nodeType']);
+ $form['sharethis'] = array(
+ '#type' => 'fieldset',
+ '#title' => t('ShareThis'),
+ '#collapsible' => TRUE,
+ '#collapsed' => TRUE,
+ '#group' => 'additional_settings',
+ '#tree' => TRUE,
+ '#weight' => 10,
+ '#disabled' => !in_array($form['#node_type']->type,$nodeTypes),
+ );
+ $form['sharethis']['sharethis_title_'.$form['#node_type']->type] = array(
+ '#title' => t('ShareThis title'),
+ '#description' => t('You can use tokens to generate the title when sharing. By default the node title will be used.'),
+ '#type' => 'textfield',
+ '#default_value' => variable_get('sharethis_title_'.$form['#node_type']->type, FALSE),
+ '#element_validate' => array('token_element_validate'),
+ '#token_type' => array('node')
+ );
+
+ $form['sharethis']['token_help'] = array(
+ '#title' => t('Replacement patterns'),
+ '#theme' => 'token_tree',
+ '#token_types' => array('node'),
+ '#collapsible' => TRUE,
+ '#collapsed' => FALSE,
+ );
+
+ $form['#submit'][] = 'sharethis_node_type_form_submit';
+ }
+}
+
+function sharethis_node_type_form_submit($form, &$form_state) {
+ $type = trim($form_state['values']['type']);
+ variable_set('sharethis_title_'.$type, $form_state['values']['sharethis']['sharethis_title_'.$type]);
+}
+
/**
* sharethisGetOptionArray is a helper function for DB access.
*
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is no loner supported.
Marking as outdated.