Skip to content

Instantly share code, notes, and snippets.

@victorferraz
Created May 2, 2012 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorferraz/2572738 to your computer and use it in GitHub Desktop.
Save victorferraz/2572738 to your computer and use it in GitHub Desktop.
Sidebar Tutorial
<?php
/*
* @package Noticias
* @version 1.0
* @author Victor Ferraz
* @copyright Copyright (c) 2011, Victor Ferraz
* @license http://www.gnu.org/licenses/gpl-3.0.txt
*/
class Noticias_model extends My_Model {
/**
* @todo DocBlock
* @return coleção de objetos
*/
function ultimas_noticias()
{
$query = $this->db->get("noticias");
$data = $query->result();
return $data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment