diff options
| -rw-r--r-- | engine/lib/views.php | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index 80ac4e827..144a346f5 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1144,6 +1144,28 @@ function elgg_view_image_block($image, $body, $vars = array()) {  }  /** + * Wrapper function for the module display pattern. + * + * Box with header, body, footer + * + * This is a shortcut for {@elgg_view layout/objects/module}. + * + * @param string $type  The type of module (main, info, popup, aside, etc.) + * @param string $title A title to put in the header + * @param string $body  Content of the module + * @param string $vars  Additional parameters for the module + * + * @return string + * @since 1.8.0 + */ +function elgg_view_module($type, $title, $body, $vars = array()) { +	$vars['class'] .= " elgg-module-$type"; //@todo this will probably cause errors? +	$vars['title'] = $title; +	$vars['body'] = $body; +	return elgg_view('layout/objects/module', $vars); +} + +/**   * Returns a human-readable representation of a river item   *   * @param ElggRiverItem $item A river item object  | 
