PHP code example of voceconnect / voce-settings-api
1. Go to this page and download the library: Download voceconnect/voce-settings-api 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/ */
voceconnect / voce-settings-api example snippets
if( ! class_exists( 'Voce_Settings_API' ) ) {
Voce_Settings_API::GetInstance()->add_page( 'Site Settings', 'Site Settings', 'site-settings', 'manage_options', 'General settings for site', 'options-general.php' )
->add_group( 'Social Settings', 'social-settings' )
->add_setting( 'Station Facebook Page URL', 'facebook_page_url', array(
'sanitize_callbacks' => array( 'vs_sanitize_url' )
))->group
->add_setting( 'Google+ Profile', 'google_plus_profile', array(
'sanitize_callbacks' => array( 'vs_sanitize_url' )
))->group->page
->add_group( 'Analytic Settings', 'analytic-settings' )
->add_setting( 'Google Analytics Tracking ID', 'ga_id', array(
'display_callback' => function( $value, $setting, $args ){
// write your own display method or use one of the built in options listed below.
return false;
},
'sanitize_callbacks' => array( function( $value, $setting, $args ){
// write your own sanitization methods or use one of the built in which are listed below.
return $value;
} ) ) );