Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. class whmTopUsers {
  15. public $fyear = null;
  16. public $fmonth = null;
  17. public $fdate = null;
  18. public $filename = null;
  19. public $filesufix = null;
  20. public $logpath = null;
  21. public $dcpumonview = null;
  22. public $configpath = null;
  23.  
  24. public function __construct() {
  25. $this->fyear = date( 'Y' );
  26. $this->fmonth = date( 'M' );
  27. $this->fdate = date( 'd' );
  28. $this->filesufix = '_topprocess.xml';
  29. $this->dcpumonview = '/usr/local/cpanel/bin/dcpumonview';
  30. $this->logpath = '/home/rsmonlog/';
  31. $this->configpath = '/usr/local/cpanel/whostmgr/docroot/cgi/rsmonitor/whm_panel/config.xml';
  32. $this->filename = $this->logpath . $this->fyear . '/' . $this->fmonth . '/' . $this->fdate . $this->filesufix;
  33. }
  34. ....................................................................
  35. ................................
  36. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement