PHP code example of varunsridharan / vsp-framework
1. Go to this page and download the library: Download varunsridharan/vsp-framework library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
/**
* Config for system tools.
* Possible Values : true / false / array()
* array(
* 'system_tools_menu' => true, # true/false/array of values
* 'menu' => true, # true/false
* 'system_status' => true, #true/false/array of values
* 'logging' => true, #true/false/array of values
* )
*
* system_status /logging / system_tool_menu array data can be like below
* array(
* 'name' => '',
* 'title' => '',
* 'icon'=>''
* )
* The above array is related to WPOnion Page Argument.
*
* $config['system_tools'] = true;
* $config['system_tools'] = false;
* $config['system_tools'] = array(
* 'menu' => array(
* 'title' => __( 'Sys Tools' ),
* ),
* );
*
*/
$config['system_tools'] = true;
/**
* Custom Lib To popup a alert after x number of days to ask for plugin review.
* please refer https://github.com/varunsridharan/wp-review-me for options informations.
*/
$config['VS_WP_Review_Me'] = true;
/**
* Config to enable logging option.
* if set to true. then it create a custom logger instance and saves it.
*/
$config['logging'] = true;