Ansel_Block_RecentFaces::_content PHP Method

_content() protected method

protected _content ( )
    protected function _content()
    {
        $faces = $GLOBALS['injector']->getInstance('Ansel_Faces');
        $results = $faces->allFaces(0, $this->_params['limit']);
        $html = '';
        foreach ($results as $face) {
            $facename = htmlspecialchars($face['face_name']);
            $html .= '<a href="' . Ansel_Faces::getLink($face) . '" title="' . $facename . '">' . '<img src="' . $faces->getFaceUrl($face['image_id'], $face['face_id']) . '" style="padding-bottom: 5px; padding-left: 5px" alt="' . $facename . '" /></a>';
        }
        return $html;
    }
Ansel_Block_RecentFaces