Guest User

Untitled

a guest
Oct 20th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. Configure::write('ApplicationConfigurationExtras.gallery_vote', array(
  3. 'element' => 'GalleryVote.application_configuration', // CakePHP 2.0 style elements
  4. 'modules' => array('gallery_vote'), // List of module id's that will see this custom configuration
  5. 'global' => false // Set to true and it will show up for all modules
  6. ));
  7.  
  8. to
  9.  
  10. <?php
  11. Configure::write('ApplicationConfigurationExtras.GalleryVote', array(
  12. 'element' => 'GalleryVote.application_configuration', // CakePHP 2.0 style elements
  13. 'modules' => array('GalleryVote'), // List of module id's that will see this custom configuration
  14. 'global' => false // Set to true and it will show up for all modules
  15. ));
Add Comment
Please, Sign In to add comment