Model_nav.php 388 B

123456789101112131415
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. class Model_nav extends Lin_Model
  3. {
  4. function __construct(){
  5. parent::__construct();
  6. $this->load->database();
  7. $this->table = 'nav';
  8. $this->load_table('nav');
  9. }
  10. /** 通过名称查找 */
  11. public function get_title($title)
  12. {
  13. return $this->find("title like '%$title%'");
  14. }
  15. } //end class