1 menu_example.module menu_example_arg_optional_load($id)

Loads an item based on its $id.

In this case we're just creating a more extensive string. In a real example we would load or create some type of object.

Parameters

int $id: Id of the item.

Related topics

File

modules/examples/menu_example/menu_example.module, line 517
Hook implementations for the Menu Example module.

Code

function menu_example_arg_optional_load($id) {
  $mapped_value = _menu_example_mappings($id);
  if (!empty($mapped_value)) {
    return t('Loaded value was %loaded', array('%loaded' => $mapped_value));
  }
  else {
    return t('Sorry, the id %id was not found to be loaded', array('%id' => $id));
  }
}