You are here

function gallery_assist_info_line in Gallery Assist 6

This function print the copyright of this module at the back-end interface.

3 calls to gallery_assist_info_line()
gallery_assist_info_data in ./gallery_assist.admin.inc
Info data.
gallery_assist_settings in ./gallery_assist.admin.inc
Settings form.
gallery_assist_settings_extras in ./gallery_assist.admin.inc
Build the tab with extra settings for Gallery Assist. It is used to display some general settings and the forms from the submodules.

File

./gallery_assist.module, line 5569
Drupal content type with gallery functionality.

Code

function gallery_assist_info_line() {
  return t('Module developed by <a target="_blank" href="@ga_creator_link">Juan Morejón</a> from the <a target="_blank" href="@qtg_link">Quiptime Group</a>', array(
    '@ga_creator_link' => url('http://simple.puntolatinoclub.de'),
    '@qtg_link' => url('http://www.quiptime.com'),
  ));
}