instagram_social_feed.variable.inc in Instagram Social Feed 7
Same filename and directory in other branches
Instagram social feed translatable variables.
File
instagram_social_feed.variable.incView 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
Name![]() |
Description |
---|---|
instagram_social_feed_variable_info | Implements hook_variable_info(). |