Jump to content
CMSTOOLS.org - форум поддержки и развития CMS

Recommended Posts

Так как из-за моего косяка, а именно то что я уехал в другой город и забыл обновленный движок я обещал пару тем по улучшению, и так.

(Более подробнее читайте в главной теме Vii Engine Lite Updated)

 

Пример автозагрузки классов (Для опытных, не кричите мне в лс что не работает если вы просто вставите это в index.php.Там помимо надо еще в ядре поковыряться)

в index.php

// КОНСТАНТА, у СУКА
define('CLASSES_DIR', ENGINE_DIR.'/classes');

// AUTO LOAD CLASSES
spl_autoload_register(function($class){
	require CLASSES_DIR.'/'.$class.'.php';
});

// Вызывать
$db = new db;
$tpl = new tpl;

P.S. Классы в папке classes должны называтся вот так:
tpl.php
db.php
Edited by Edward Nemirovskiy
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.

Guest
Reply to this topic...

×   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.

Loading...
 Share

×
×
  • Create New...