PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/stable-1.1.0/Client/Globals.cs

#
C# | 38 lines | 22 code | 8 blank | 8 comment | 0 complexity | 9c48b30322b3cbfbb3351256e053f780 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. //-----------------------------------------------------------------------
  2. // <copyright>
  3. // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
  4. //
  5. // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
  6. // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
  7. // </copyright>
  8. //-----------------------------------------------------------------------
  9. using System;
  10. namespace Web.Management.PHP {
  11. internal static class Globals {
  12. public const string PHPPageIdentifier = "3b388931-63a7-48f4-a6fc-464b05a44160";
  13. public const string PHPInfoPageIdentifier = "21a5d44d-3a61-44f1-91ef-5965c6e0e3e2";
  14. public const string PHPSettingsPageIdentifier = "d021b245-cbd8-48e7-bdfe-7e8a1a457b38";
  15. public const string PHPExtensionsPageIdentifier = "3449ff77-1f5c-4ba1-80cb-80f12512e367";
  16. public const string ErrorReportingPageIdentifier = "f52b2450-4b78-4602-a7e8-c8d9257a2c25";
  17. public const string RuntimeLimitsPageIdentifier = "4f13ca20-adc1-4fa8-aba7-5d537746d304";
  18. public const string PHPPageOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  19. public const string RegisterPHPOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  20. public const string ChangeVersionOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  21. public const string SelectSiteDomainOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  22. public const string PHPInfoPageOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  23. public const string RecommendedConfigOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  24. public const string ErrorReportingOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  25. public const string RuntimeLimitsOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  26. public const string AllSettingsOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  27. public const string AllExtensionsOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  28. public const string AddExtensionOnlineHelp = "http://phpmanager.codeplex.com/documentation";
  29. }
  30. }