zflow.php 457 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * __construct
  4. *
  5. * @access public
  6. * @return void
  7. */
  8. public function __construct($appName = '')
  9. {
  10. parent::__construct($appName);
  11. // Load custom lang from the flow extension of zdoo.
  12. $this->loadExtension('flow')->loadCustomLang();
  13. }
  14. /**
  15. * Update accounts.
  16. *
  17. * @param int $groupID
  18. * @access public
  19. * @return void
  20. */
  21. public function updateAccounts($groupID)
  22. {
  23. $this->loadExtension('zflow')->updateAccounts($groupID);
  24. }