You are here

function forum_CrumbsMonoPlugin_forumThreadCreate::describe in Crumbs, the Breadcrumbs suite 7.2

Same name and namespace in other branches
  1. 7 plugins/crumbs.forum.inc \forum_CrumbsMonoPlugin_forumThreadCreate::describe()

Parameters

crumbs_InjectedAPI_describeMonoPlugin $api: Injected API object, with methods that allows the plugin to further describe itself.

Return value

string|void As an alternative to the API object's methods, the plugin can simply return a string label.

Overrides crumbs_MonoPlugin::describe

File

plugins/crumbs.forum.inc, line 141

Class

forum_CrumbsMonoPlugin_forumThreadCreate

Code

function describe($api) {
  $api
    ->titleWithLabel(t('node/add/*/* in a forum'), t('Path'));
  $api
    ->titleWithLabel(t('The forum where the node is going to be created.'), t('Parent'));
}