'list-class' => 'elgg-river-list',
);
- return elgg_view('layout/objects/list', $params);
+ return elgg_view('page/components/list', $params);
}
/**
*/
function elgg_view_listing($icon, $info) {
elgg_deprecated_notice('elgg_view_listing deprecated by elgg_view_image_block', 1.8);
- return elgg_view('layout/objects/image_block', array('image' => $icon, 'body' => $info));
+ return elgg_view('page/components/image_block', array('image' => $icon, 'body' => $info));
}
/**
}
if ($vars['gallery']) {
- return elgg_view('layout/objects/gallery', $vars);
+ return elgg_view('page/components/gallery', $vars);
} else {
- return elgg_view('layout/objects/list', $vars);
+ return elgg_view('page/components/list', $vars);
}
}
$vars = array_merge($defaults, $vars);
- return elgg_view('layout/objects/list', $vars);
+ return elgg_view('page/components/list', $vars);
}
/**
);
$comments = elgg_get_annotations($options);
- $body = elgg_view('layout/objects/list', array(
+ $body = elgg_view('page/components/list', array(
'items' => $comments,
'pagination' => false,
'list_class' => 'elgg-latest-comments',
* Fixed width media on the side (image, icon, flash, etc.).
* Descriptive content filling the rest of the column.
*
- * This is a shortcut for {@elgg_view layout/objects/image_block}.
+ * This is a shortcut for {@elgg_view page/components/image_block}.
*
* @param string $image The icon and other information
* @param string $body Description content
function elgg_view_image_block($image, $body, $vars = array()) {
$vars['image'] = $image;
$vars['body'] = $body;
- return elgg_view('layout/objects/image_block', $vars);
+ return elgg_view('page/components/image_block', $vars);
}
/**
*
* Box with header, body, footer
*
- * This is a shortcut for {@elgg_view layout/objects/module}.
+ * This is a shortcut for {@elgg_view page/components/module}.
*
* @param string $type The type of module (main, info, popup, aside, etc.)
* @param string $title A title to put in the header
$vars['class'] .= " elgg-module-$type"; //@todo this will probably cause errors?
$vars['title'] = $title;
$vars['body'] = $body;
- return elgg_view('layout/objects/module', $vars);
+ return elgg_view('page/components/module', $vars);
}
/**