You are here

function instagram_block_get_configuration_reminder in Instagram Block 7

Builds render array to remind user to configure block settings.

1 call to instagram_block_get_configuration_reminder()
instagram_block_block_view in ./instagram_block.module
Implements hook_block_view().

File

./instagram_block.module, line 303
Module file for the instagram_block module.

Code

function instagram_block_get_configuration_reminder() {
  return array(
    '#markup' => t('Please don\'t forget to !configure this block.', array(
      '!configure' => l(t('configure'), 'admin/config/services/instagram_block'),
    )),
  );
}