You are here

instagram_social_feed.variable.inc in Instagram Social Feed 7

Same filename and directory in other branches
  1. 8 instagram_social_feed.variable.inc

Instagram social feed translatable variables.

File

instagram_social_feed.variable.inc
View source
<?php

/**
 * @file
 * Instagram social feed translatable variables.
 */

/**
 * Implements hook_variable_info().
 */
function instagram_social_feed_variable_info() {
  $variables['instagram_social_feed_more_uri'] = array(
    'type' => 'string',
    'title' => t('Instagram social feed - More link URI'),
    'description' => t('URI of the general link to display in the display below the photos.'),
    'default' => '',
  );
  $variables['instagram_social_feed_more_text'] = array(
    'type' => 'string',
    'title' => t('Instagram social feed - More link Text'),
    'description' => t('Text of the general link to display in the display below the photos.'),
    'default' => '',
  );
  return $variables;
}

Functions