PageRenderTime 51ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/DevApp/application/views/scripts/index/index.phtml

http://firephp.googlecode.com/
text | 162 lines | 96 code | 66 blank | 0 comment | 0 complexity | 375e7824d4bc38e84d9ac001d8dcc1f1 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.0, MIT, Apache-2.0
  1. <?php
  2. $this->borderContainer()->captureStart('masterLayout', array('design' => 'headline'));
  3. // ************* Header *************
  4. $this->contentPane()->captureStart('headerPane', array('region' => 'top'));
  5. ?>
  6. <table border="0" cellpadding="0" cellspacing="0">
  7. <tr>
  8. <td nowrap style="padding-left: 10px;"><a href="http://www.firephp.org/" target="_blank"><img width="51" height="51" border="0" src="/images/BugLogo.png"/></a></td>
  9. <td nowrap width="50%">FirePHP Development Application</td>
  10. <td nowrap width="50%">
  11. <table border="0" cellpadding="0" cellspacing="0">
  12. <tr>
  13. <td>Your Extension Version:</td>
  14. <td style="padding-left: 15px;"><span style="font-size: 180%; color: red;"><?php echo $this->FirePHPUserAgentVersion; ?></span></td>
  15. </tr>
  16. </table>
  17. </td>
  18. </tr>
  19. </table>
  20. <?php
  21. echo $this->contentPane()->captureEnd('headerPane');
  22. // ************* Header *************
  23. // ************* Left *************
  24. $this->accordionContainer()->captureStart('menuAccordion', array('region'=>'left'));
  25. $this->accordionPane()->captureStart('playground_menuPane', array('title' => 'Playground'));
  26. ?>
  27. <div>
  28. <p><a target="contentIframe" href="/plain/PHPInfo.php">PHP Info</a><p>
  29. <p><a target="contentIframe" href="/plain/LogPrivateObjectMembers.php">Log Private Object Members</a><p>
  30. <p><a target="contentIframe" href="/plain/LogPrivateObjectMembers2.php">Log Private Object Members 2</a><p>
  31. <p><a target="contentIframe" href="/plain/CallJavaScriptConstantDefined.php">"Call" JavaScript constant already defined</a><p>
  32. <p><a target="contentIframe" href="/plain/RandomTests.php">Random Tests</a><p>
  33. <p><a target="contentIframe" href="/plain/TestHeaderDumps.php">Test Header Dumps</a><p>
  34. <p><a target="contentIframe" href="/plain/Check-ISO-8859-1.php">Check-ISO-8859-1</a><p>
  35. <p><a target="contentIframe" href="/plain/ThrowException.php">Throw Exception</a><p>
  36. </div>
  37. <?php
  38. echo $this->accordionPane()->captureEnd('playground_menuPane');
  39. $this->accordionPane()->captureStart('tests_menuPane', array('title' => 'Tests', 'selected'=>true));
  40. ?>
  41. <div>
  42. <h3>Server Libraries</h3>
  43. <div style="padding-left: 10px; padding-top: 0px;">
  44. <p><a target="contentIframe" href="ServerLibraryTests/FirePHPCore">FirePHPCore</a><p>
  45. <p><a target="contentIframe" href="ServerLibraryTests/ZendFramework">Zend Framework</a><p>
  46. </div>
  47. </div>
  48. <?php
  49. echo $this->accordionPane()->captureEnd('tests_menuPane');
  50. $this->accordionPane()->captureStart('version_0_1_menuPane', array('title' => 'Version 0.1'));
  51. ?>
  52. <div>
  53. <p>Extension: <a target="contentIframe" href="http://code.google.com/p/firephp/source/browse/branches/FirefoxExtension-0.1">branches/FirefoxExtension-0.1</a><p>
  54. </div>
  55. <?php
  56. echo $this->accordionPane()->captureEnd('version_0_1_menuPane');
  57. $this->accordionPane()->captureStart('version_0_2_menuPane', array('title' => 'Version 0.2'));
  58. ?>
  59. <div>
  60. <p>Extension: <a target="contentIframe" href="http://code.google.com/p/firephp/source/browse/branches/FirefoxExtension-0.2">branches/FirefoxExtension-0.2</a><p>
  61. <h3>Domplate Templates</h3>
  62. <div style="padding-left: 10px; padding-top: 0px;">
  63. <p><a target="contentIframe" href="Domplate/Log">Log</a><p>
  64. </div>
  65. </div>
  66. <?php
  67. echo $this->accordionPane()->captureEnd('version_0_2_menuPane');
  68. echo $this->accordionContainer()->captureEnd('menuAccordion');
  69. // ************* Left *************
  70. // ************* Main Content *************
  71. $this->contentPane()->captureStart('contentPane',array('region' => 'center'));
  72. ?>
  73. <iframe id="contentIframe" name="contentIframe" src=""></iframe>
  74. <?php
  75. echo $this->contentPane()->captureEnd('contentPane');
  76. // ************* Main Content *************
  77. // ************* Footer *************
  78. $this->contentPane()->captureStart('footerPane', array('region' => 'bottom'));
  79. ?>
  80. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  81. <tr>
  82. <td width="100%" align="center">
  83. <table class="footerTable" border="0" cellpadding="0" cellspacing="0">
  84. <tr>
  85. <td nowrap>Copyright &copy; 2006 - <?php echo date('Y'); ?></td>
  86. <td nowrap style="padding-left: 7px; padding-right: 7px;"><a target="_blank" href="http://www.christophdorn.com/"><img src="/images/CD_Icon_21x11_bbbbbb.png" width="21" height="11" border="0"></a></td>
  87. <td nowrap><a target="_blank" href="http://www.christophdorn.com/">Christoph Dorn</a></td>
  88. </tr>
  89. </table>
  90. </td>
  91. </tr>
  92. </table>
  93. <?php
  94. echo $this->contentPane()->captureEnd('footerPane');
  95. // ************* Footer *************
  96. echo $this->borderContainer()->captureEnd('masterLayout');