Git Codebase - Sn0wlink IT
FredMin
Code:
Download ZIP
🗀 config
🗀 custom-modules
🗀 docs
🗀 images
🗀 modules
🗀 plugins
🗀 software
- NOTES -
FredMin-1.0.zip
LICENSE
README.md
_config.yml
config.json
favicon-old.ico
favicon.ico
foot.php
functions.php
head.php
index-development.php
index.php
modules.php
screenshot.png
template.html
testcode.php
index.php
<?php // Webpage Name $pagename ="Welcome"; // Include Files include ('config/config.php'); include ('head.php'); include ('functions.php'); // CONTENT include ('modules.php'); // List Custom Module Names (alphabetical order) foreach (glob("custom-modules/*",GLOB_ONLYDIR) as $file) { include ($file . '/config.php'); echo "<div class='icon'>\n"; echo "<a class='icon' href='$file/module.php'>\n"; echo "<img class='icon' src='" . $file . "/icon.png' height='50px'>\n"; echo "<br />$appname</a>\n"; echo "</div>\n\n"; } // Footer include ('foot.php'); ?>