You are here

function _yr_verdata_addmore_msg in Yr Weatherdata 7

Same name and namespace in other branches
  1. 6.2 yr_verdata.module \_yr_verdata_addmore_msg()

Message functions for centralizing messages used multiple places.

2 calls to _yr_verdata_addmore_msg()
yr_verdata_load_location in ./yr_verdata.module
Function for loading a location from the database, and adding the path to the file.
yr_verdata_page_all in ./yr_verdata.module
Function for generating the main forecast page.

File

./yr_verdata.module, line 1066
yr_verdata.module This file contains the code for getting the forecast from yr.no and displaying it on a Drupal site.

Code

function _yr_verdata_addmore_msg() {
  return t('You can add more locations at !add_loc', array(
    '!add_loc' => l('forecast/add', 'forecast/add'),
  ));
}