PageRenderTime 35ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDataSources.php

https://bitbucket.org/hieronim1981/tunethemusic
PHP | 81 lines | 21 code | 6 blank | 54 comment | 0 complexity | 49e4d3f22be3cfbf78d72e2cc6fa1283 MD5 | raw file
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Service_WindowsAzure
  17. * @subpackage Diagnostics
  18. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationLogs
  24. */
  25. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationLogs.php';
  26. /**
  27. * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationDiagnosticInfrastructureLogs
  28. */
  29. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationDiagnosticInfrastructureLogs.php';
  30. /**
  31. * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters
  32. */
  33. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationPerformanceCounters.php';
  34. /**
  35. * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog
  36. */
  37. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationWindowsEventLog.php';
  38. /**
  39. * @see Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories
  40. */
  41. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationDirectories.php';
  42. /**
  43. * @category Zend
  44. * @package Zend_Service_WindowsAzure
  45. * @subpackage Diagnostics
  46. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  47. * @license http://framework.zend.com/license/new-bsd New BSD License
  48. *
  49. * @property int OverallQuotaInMB Overall quota in MB
  50. * @property Zend_Service_WindowsAzure_Diagnostics_ConfigurationLogs Logs Logs
  51. * @property Zend_Service_WindowsAzure_Diagnostics_ConfigurationDiagnosticInfrastructureLogs DiagnosticInfrastructureLogs Diagnostic infrastructure logs
  52. * @property Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters PerformanceCounters Performance counters
  53. * @property Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog WindowsEventLog Windows Event Log
  54. * @property Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories Directories Directories
  55. */
  56. class Zend_Service_WindowsAzure_Diagnostics_ConfigurationDataSources
  57. extends Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract
  58. {
  59. /**
  60. * Constructor
  61. *
  62. * @param int $overallQuotaInMB Overall quota in MB
  63. */
  64. public function __construct($overallQuotaInMB = 0)
  65. {
  66. $this->_data = array(
  67. 'overallquotainmb' => $overallQuotaInMB,
  68. 'logs' => new Zend_Service_WindowsAzure_Diagnostics_ConfigurationLogs(),
  69. 'diagnosticinfrastructurelogs' => new Zend_Service_WindowsAzure_Diagnostics_ConfigurationDiagnosticInfrastructureLogs(),
  70. 'performancecounters' => new Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters(),
  71. 'windowseventlog' => new Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog(),
  72. 'directories' => new Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories()
  73. );
  74. }
  75. }