Jump to content
  • 0

Наследование


alexandr.coder
 Share

Question

Есть классы: Core, Controller, Loader и site.

Класс Core наследует Controller, класс Controller наследует site. Объект класса Loader создается в классе Core.

$this -> load = new Loader();

Но при попытки вызова метода класса Loader в классе site:

$this -> load -> view("header");

,выдается такая ошибка:

Notice: Undefined property: site::$load in S:\home\dev\www\system\application\controllers\site.php on line 12
Call to a member function view() on a non-object in S:\home\dev\www\system\application\controllers\site.php on line 12

По идее объект $this -> load должен быть доступен в классе site, но происходит какая-то ошибка.Помогите.

Link to comment
Share on other sites

Recommended Posts

  • 0
я ошибся

if (!class_exists('Framework_Security'))
{
//Инсцилизация системы безопасности
require_once (SYSTEM."/classes/security.php");

}

$this -> security = new Framework_Security();

В этом нет смысла. Файл итак подключится только один раз. Думаю эту проблему нельзя решить.

Link to comment
Share on other sites

  • 0
Всё можно решить. пересмотрите структуру фреймворка. я неделю назад реализовал такую структуру как в CodeIgniter'e и всё работает.

Я уже пересматрививаю. Я говорил что с этой структурой структурой нельзя решить проблему.

Раз вы уже реализовывали такую структуру, у меня есть вопрос: можно ли реализовать такую структуру создавая объекты основных библиотек прямо в ядре? Есть ещё вариант: сделать библиотеки в виде класса со статическими методами. Но код будет не такой красивый - это раз. Два: некоторые библиотеки будет сложно реализовать так.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy