1

我需要在我的 codeigniter 站点的侧边栏中实现广告。

广告是动态的并从数据库中检索。我当前的设置是我有主模板文件,我将主视图文件的名称作为变量传递给,如下所示:

$data['main_content'] = 'some_view_file';
$this->load->view('template_file', $data);

我想到了以下步骤:

  1. get_ads()在 my 中创建一个函数MY_Controller并检索所有广告并返回它
  2. 在我的每个控制器的方法中,我访问上面创建的函数并将其传递给模板

$data['ads'] = $this->get_ads();
$data['main_content'] = 'some_view_file';
$this->load->view('template_file', $data);

但是上述方法的问题是,我需要$data['ads'] = $this->get_ads();在加载视图之前在我的所有方法中设置。

处理上述问题的更好方法是什么?

4

2 回答 2

3

创建一个名为 Ads.php 的 CodeIgniter 库

class Ads
{

    private $CI;

    public function __construct()
    {
        $this->CI = & get_instance();
    }

    public function my_ads()
    {
        // get the ads from database //
        return $this->CI->db->select('field1, field2, field3')->from('ads_table')->get()->result();
    }

}

自动加载库(因为您需要所有视图中的广告)。转到./application/config/autoload.php

/*
  | -------------------------------------------------------------------
  |  Auto-load Libraries
  | -------------------------------------------------------------------
  | These are the classes located in the system/libraries folder
  | or in your application/libraries folder.
  |
  | Prototype:
  |
  | $autoload['libraries'] = array('database', 'session', 'xmlrpc');
 */

$autoload['libraries'] = array('ads');

现在您可以使用 CI 系统检索整个数据

$ads = $this->ads->my_ads();

希望这对您有所帮助。谢谢!!

于 2012-06-25T10:10:37.117 回答
1

MY_Controller添加一个变量:

class MY_Controller extends CI_Controller {

      public $data;

      public function __construct() {
          $this->data['ads'] = $this->get_ads();      
          //etc.
      }
    //etc.
}

在每个控制器中更新$data变量并像这样调用视图:

$this->data['main_content'] = 'some_view_file';
$this->load->view('template_file', $this->data);
于 2012-06-25T10:08:12.077 回答