batchedit.zentaomax.html.hook.php 295 B

123456789101112
  1. <?php
  2. namespace zin;
  3. global $lang, $app;
  4. $users = $app->control->loadModel('user')->getPairs('noletter|noclosed');
  5. query('formBatchPanel')->each(function($node) use($users)
  6. {
  7. $items = $node->prop('items');
  8. $items['superior']['items'] = $users;
  9. $node->setProp('items', $items);
  10. });