Manage.php 271 B

123456789101112131415
  1. <?php
  2. namespace Cash\Lib;
  3. use Dever;
  4. class Manage
  5. {
  6. public function info($audit_type, $audit)
  7. {
  8. $config = Dever::db('cash/shop')->config;
  9. return $config['config_audit_type'][$audit_type] . $config['config_audit'][$audit];
  10. }
  11. }