LoggerLayout.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * log4php is a PHP port of the log4j java logging package.
  4. *
  5. * <p>This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).</p>
  6. * <p>Design, strategies and part of the methods documentation are developed by log4j team
  7. * (Ceki Gülcü as log4j project founder and
  8. * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).</p>
  9. *
  10. * <p>PHP port, extensions and modifications by VxR. All rights reserved.<br>
  11. * For more information, please see {@link http://www.vxr.it/log4php/}.</p>
  12. *
  13. * <p>This software is published under the terms of the LGPL License
  14. * a copy of which has been included with this distribution in the LICENSE file.</p>
  15. *
  16. * @package log4php
  17. */
  18. /**
  19. * @ignore
  20. */
  21. if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__));
  22. /**
  23. * Extend this abstract class to create your own log layout format.
  24. *
  25. * @author VxR <vxr@vxr.it>
  26. * @version $Revision: 1.1 $
  27. * @package log4php
  28. * @abstract
  29. */
  30. class LoggerLayout {
  31. /**
  32. * Creates LoggerLayout instances with the given class name.
  33. *
  34. * @param string $class
  35. * @return LoggerLayout
  36. */
  37. function factory($class)
  38. {
  39. if (!empty($class)) {
  40. $class = basename($class);
  41. if (!class_exists($class))
  42. @include_once(LOG4PHP_DIR . "/layouts/{$class}.php");
  43. if (class_exists($class))
  44. return new $class();
  45. }
  46. return null;
  47. }
  48. /**
  49. * Override this method
  50. */
  51. function activateOptions()
  52. {
  53. // override;
  54. }
  55. /**
  56. * Override this method to create your own layout format.
  57. *
  58. * @param LoggerLoggingEvent
  59. * @return string
  60. */
  61. function format($event)
  62. {
  63. return $event->getRenderedMessage();
  64. }
  65. /**
  66. * Returns the content type output by this layout.
  67. * @return string
  68. */
  69. function getContentType()
  70. {
  71. return "text/plain";
  72. }
  73. /**
  74. * Returns the footer for the layout format.
  75. * @return string
  76. */
  77. function getFooter()
  78. {
  79. return null;
  80. }
  81. /**
  82. * Returns the header for the layout format.
  83. * @return string
  84. */
  85. function getHeader()
  86. {
  87. return null;
  88. }
  89. }
  90. ?>