1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-09 05:40:44 +02:00

Added missing Voux theme config.

This commit is contained in:
Cameron
2017-02-09 13:18:51 -08:00
parent 90a5077fe2
commit 573d204cc0
2 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
<?php
if (!defined('e107_INIT')) { exit; }
// Theme Configuration File.
class theme_config implements e_theme_config
{
function config()
{
$brandingOpts = array('sitename'=>'Site Name', 'logo' => 'Logo', 'sitenamelogo'=>'Logo &amp; Site Name');
$fields = array(
'branding' => array('title'=> "Branding", 'type'=>'dropdown', 'writeParms'=>array('optArray'=> $brandingOpts)),
'nav_alignment' => array('title'=> "Navbar Alignment", 'type'=>'dropdown', 'writeParms'=>array('optArray'=> array('left'=> "Left",'right'=> "Right"))),
'usernav_placement' => array('title'=> "Signup/Login Placement", 'type'=>'dropdown', 'writeParms'=>array('optArray'=> array('top'=> "Top", 'bottom'=> "Bottom"))),
);
return $fields;
}
function help()
{
return '';
}
}
?>