/**
 * Lists entities.
 *
 * @param int  $owner_guid     Owner GUID
 * @param int  $limit          Limit
 * @param bool $fullview       Show entity full views
 * @param bool $listtypetoggle Show list type toggle
 * @param bool $allowedtypes   A string of the allowed types
 *
 * @return string
 * @deprecated 1.7.  Use elgg_list_registered_entities().
 */
function list_registered_entities($owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = false, $allowedtypes = true)
{
    elgg_deprecated_notice('list_registered_entities() was deprecated by elgg_list_registered_entities().', 1.7);
    $options = array();
    // don't want to send anything if not being used.
    if ($owner_guid) {
        $options['owner_guid'] = $owner_guid;
    }
    if ($limit) {
        $options['limit'] = $limit;
    }
    if ($allowedtypes) {
        $options['allowed_types'] = $allowedtypes;
    }
    // need to send because might be BOOL
    $options['full_view'] = $fullview;
    $options['list_type_toggle'] = $listtypetoggle;
    $options['offset'] = get_input('offset', 0);
    return elgg_list_registered_entities($options);
}
Exemple #2
0
<?php

/**
 * Elgg latest content page
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */
/**
 * Start the Elgg engine
 */
require_once dirname(dirname(__FILE__)) . "/engine/start.php";
// Load the front page
global $CONFIG;
if (is_plugin_enabled('riverdashboard')) {
    $title = elgg_view_title(elgg_echo('content:latest'));
    set_context('search');
    $content = elgg_list_registered_entities(array('limit' => 10, 'full_view' => FALSE, 'allowed_types' => array('object', 'group')));
    set_context('latest');
} else {
    $content = "Riverdashboard not loaded";
}
$content = elgg_view_layout('one_column_with_sidebar', $title . $content);
page_draw(elgg_echo('content:latest'), $content);