FAQ

Hook: php_pages_news


Use this hook to execute PHP code in the index.php and news.php file.This hook is used in pages and news, the same php code will be executed.For example:if (!empty($PAGE_ACTIVE)) { $myplugin = 1; }if you like ...

Read more

Hook: php_lang


Use this hook to execute PHP language code in the index.php file.For example:if (file_exists(APP_PATH.'plugins/yourplugin/lang/'.$jkv[lang].'.ini')) { $tlt = ...

Read more

Hook: php_rss


Use this hook to execute PHP code in the rss.php file.For example:if ($displayRSS) { echo My RSS: .$displayRSS; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_index_bottom


Use this hook to execute PHP code at the very end in the index.php file.For example:if (isset($page3)) { echo CMS is ready...; } else { echo CMS is always ready...; }if you like to include a ...

Read more

Hook: php_index_top


Use this hook to execute PHP code in the index.php file before anything else.For example:define('MY_VAR', cool);if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_sitemap


Use this hook to execute PHP code in the sitemap.php file.For example:if ($cat) { echo Categories: .$cat; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_tags


Use this hook to execute PHP code in the tags.php file.For example:if ($cleanTag) { echo Your tag: .$cleanTag; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_search


Use this hook to execute PHP code in the search.php file.For example:if ($SearchInput) { echo Your search term: .$SearchInput; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

What can I do with CMS?


CMS is a software to build modern websites based on HTML5 and CSS3 and Bootstrap 3.You can do almost anything with CMS, because it is not blown up with any unnecessary functions it is a perfect platform for ...

Read more

How big is CMS?


CMS is very lightweight and super fast! It is straight forward and does not contain any unnecessary files or blown up functions. In fact CMS packed as a ZIP file is only around 4MB, have you every seen a ...

Read more