Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. $settings['panels'] = array(
  3. 'exemplu-panou' => array(
  4. 'title' => 'Titlu Panou',
  5. 'sections' => array(
  6. 'exemplu-sectiune' => array(
  7. 'title' => 'Titlu Sectiune',
  8. 'options' => array(
  9. 'culoare_accent' => array(
  10. 'label' => 'Culoarea Accentuata',
  11. 'type' => 'color',
  12. 'default' => '#ffeb00',
  13. 'css' => array(
  14. array(
  15. 'selector' => 'body',
  16. 'property' => 'background-color'
  17. )
  18. ),
  19. 'live' => true
  20. )
  21. )
  22. )
  23. )
  24. )
  25. );
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement