Elgg\Database\AdminNotices::find PHP Method

find() public method

Get admin notices. An admin must be logged in since the notices are private.
public find ( integer $limit = 10 ) : array
$limit integer Limit
return array Array of admin notices
    function find($limit = 10)
    {
        return elgg_get_entities_from_metadata(array('type' => 'object', 'subtype' => 'admin_notice', 'limit' => $limit, 'distinct' => false));
    }