batchedit.zentaomax.html.hook.php 377 B

12345678910111213
  1. <?php
  2. namespace zin;
  3. global $app;
  4. query('formBatchPanel')->each(function($node) use($app)
  5. {
  6. $items = $node->prop('items');
  7. foreach($items as $index => $item)
  8. {
  9. if(($app->tab == 'project' || $app->tab == 'execution') && ($item['name'] == 'module' || $item['name'] == 'scene')) $items[$index]['hidden'] = true;
  10. }
  11. $node->setProp('items', $items);
  12. });