Guest User

Untitled

a guest
Feb 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $config['a'] = array(
  2. "depends" => e,
  3. $config['b'] => array(
  4. "enabled" => 1,
  5. );
  6. );
  7. $config['c'] = 1;
  8. $config['d'] = array(
  9. enabled => 1,
  10. );
  11. $config['e'] = 0;
  12.  
  13. ******** vystup ********
  14. $config['a'] = 0;//zavisi na e a to je disabled
  15. $config['b'] = 0;//dite a, a to je disabled
  16. $config['c'] = 1;
  17. $config['d'] = 1;
  18. $config['e'] = 0;
Add Comment
Please, Sign In to add comment