die neuesten Einträge mit cakephp bekommen

function getNewest( $limit = 50 ) {
        $data = $this->find('all',
            array(
            'order' => $this->name .'.id DESC',
            'limit' => $limit)
        );
        return $data;
    }

Leave Your Comment