У меня есть мнение, что нет. срочных писем в шапке:
I used the following lines within my code and that is working fine. $UrgentLetters is defined in the Controller and that got from the model properly.
У вас есть Количество срочных / важных писем
Контроллер
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller
{
function __construct() {
parent::__construct();
$this->load->model('Welcome_Model');
}
public function index()
{
$where=Null;
$meta=array(
'letterCount'=>$this->Welcome_Model->getLetterCount(),
'branchCount'=>$this->Welcome_Model->getBranchCount(),
'methodCount'=>$this->Welcome_Model->getMethodCount(),
'classificationCount'=>$this->Welcome_Model->getClassificationCount(),
'plCount'=>$this->Welcome_Model->getpendingLettersCount(),
'letterFigures'=>$this->Welcome_Model->getLetterFigures($where),
'pendingLetterCount'=>$this->Welcome_Model->getPendingCount(),
'UrgentLetters'=>$this->Welcome_Model->getUrgentLetters()
);
//echo '<pre>'; print_r($meta);
$this->load->view('header',$meta);
$this->load->view('dashboard');
$this->load->view('footer');
}
}
?>
Но если я нажму на зеленый блок, красный блок, блок куколки или любая другая ссылка меню, которая ссылается на другие страницы в моем проекте, следующие сообщения:
введите описание изображения здесь
Я не могу уловить проблему со мной. Кто-нибудь может помочь?