protected function Application::getStubText in Module Object Oriented Programming API 6.2
Same name and namespace in other branches
- 6 component/moopapi.component.inc \Application::getStubText()
- 7.2 component/moopapi.component.inc \Application::getStubText()
- 7 component/moopapi.component.inc \Application::getStubText()
1 call to Application::getStubText()
- Application::getAdminForm in component/
moopapi.component.inc
File
- component/
moopapi.component.inc, line 210
Class
- Application
- @todo Desc for Application.
Code
protected function getStubText($drupal_nid, $app_name = NULL) {
$app_name = !empty($app_name) ? $app_name : strtolower($this->app_name);
return t('This functionality is currently in development. See <a href="@issue_link">related issue</a>. Please consider participating in <a href="@patchranger_link">patch crowd funding of this issue</a>. Read more about patch crowd funding on <a href="@project_link">the module\'s project page</a>.', array(
'@issue_link' => url("http://drupal.org/node/{$drupal_nid}"),
'@patchranger_link' => url("http://www.patchranger.com/?do_nid={$drupal_nid}"),
'@project_link' => url("http://drupal.org/project/{$app_name}#how-much-does-it-cost"),
));
}