Created
January 30, 2015 09:21
-
-
Save georgeolaru/af3bd32fcabbefc1f8e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$settings['panels'] = array( | |
'exemplu-panou' => array( | |
'title' => 'Titlu Panou', | |
'sections' => array( | |
'exemplu-sectiune' => array( | |
'title' => 'Titlu Sectiune', | |
'options' => array( | |
'culoare_accent' => array( | |
'label' => 'Culoarea Accentuata', | |
'type' => 'color', | |
'default' => '#ffeb00', | |
'css' => array( | |
array( | |
'selector' => 'body', | |
'property' => 'background-color' | |
) | |
), | |
'live' => true | |
) | |
) | |
) | |
) | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment