Getting started

Thanks for purchasing Installer!

For author url visit https://codester.com/SuperDev.


Installer is a simple PHP application that creates a configuration file from the form provided with the script. Once all values are given, they will be parsed into a configuration file that will be read by your script for initialization purposes.

Generation

define('your_value1', 'value'); - string
define('your_checkbox', true); - checkbox (true or false)

Initialization


Executing the installer is easy. Just use this piece of code, once the form has been submitted.

if (!install()) { return '<h3>Error!</h3><p>Could not write to file! Please check permissions and try again!</p>'; }

Help And Support

To recieve support, please contact me on codester via support, pm, or email.

Support includes basic help & support. If you find any bugs or security issues, please disclose them to me via email!



Examples

String

if(your_value1 === "value"){
// true
}else{
// false
}

$value = your_value;

To reverse, please add ! before your value name. This would mean that if you had value set, then true would become false.

Checkbox

if(your_checkbox){
// true
}else{
// false
}

To reverse, add ! before your value name. This would mean that if you had true set, true becomes false.


Installer Themes


Default

The default theme, written in beautiful CSS.

Screenshot

Bootstrap

The bootstrap theme, written for bootstrap 5.

Screenshot

HalfmoonUI

The HalfmoonUI theme, written for HalfmoonUI v1.x.

Screenshot

Enabling Darkmode

WARNING: Darkmode only works for HalfmoonUI

<script>halfmoon.toggleDarkMode();</script>