PageRenderTime 65ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/hieronim1981/tunethemusic
PHP | 62 lines | 15 code | 3 blank | 44 comment | 0 complexity | 2517ec53c10982eb634d31bcda9140d2 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_ConfigurationObjectBaseAbstract
  24. */
  25. require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php';
  26. /**
  27. * @see Zend_Service_WindowsAzure_Diagnostics_LogLevel
  28. */
  29. require_once 'Zend/Service/WindowsAzure/Diagnostics/LogLevel.php';
  30. /**
  31. * @category Zend
  32. * @package Zend_Service_WindowsAzure
  33. * @subpackage Diagnostics
  34. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  35. * @license http://framework.zend.com/license/new-bsd New BSD License
  36. *
  37. * @property int BufferQuotaInMB Buffer quota in MB
  38. * @property int ScheduledTransferPeriodInMinutes Scheduled transfer period in minutes
  39. * @property string ScheduledTransferLogLevelFilter Scheduled transfer log level filter
  40. */
  41. class Zend_Service_WindowsAzure_Diagnostics_ConfigurationLogs
  42. extends Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract
  43. {
  44. /**
  45. * Constructor
  46. *
  47. * @param int $bufferQuotaInMB Buffer quota in MB
  48. * @param int $scheduledTransferPeriodInMinutes Scheduled transfer period in minutes
  49. * @param string $scheduledTransferLogLevelFilter Scheduled transfer log level filter
  50. */
  51. public function __construct($bufferQuotaInMB = 0, $scheduledTransferPeriodInMinutes = 0, $scheduledTransferLogLevelFilter = Zend_Service_WindowsAzure_Diagnostics_LogLevel::UNDEFINED)
  52. {
  53. $this->_data = array(
  54. 'bufferquotainmb' => $bufferQuotaInMB,
  55. 'scheduledtransferperiodinminutes' => $scheduledTransferPeriodInMinutes,
  56. 'scheduledtransferloglevelfilter' => $scheduledTransferLogLevelFilter
  57. );
  58. }
  59. }