/library/Minify/Minify/Controller/Page.php

https://code.google.com/p/ecartcommerce/ · PHP · 82 lines · 37 code · 7 blank · 38 comment · 4 complexity · 02bc8325362e435d4af75a6ec138c2d4 MD5 · raw file

  1. <?php
  2. /**
  3. * Class Minify_Controller_Page
  4. * @package Minify
  5. */
  6. require_once 'Minify/Controller/Base.php';
  7. /**
  8. * Controller class for serving a single HTML page
  9. *
  10. * @link http://code.google.com/p/minify/source/browse/trunk/web/examples/1/index.php#59
  11. * @package Minify
  12. * @author Stephen Clay <steve@mrclay.org>
  13. */
  14. class Minify_Controller_Page extends Minify_Controller_Base {
  15. /**
  16. * Set up source of HTML content
  17. *
  18. * @param array $options controller and Minify options
  19. * @return array Minify options
  20. *
  21. * Controller options:
  22. *
  23. * 'content': (required) HTML markup
  24. *
  25. * 'id': (required) id of page (string for use in server-side caching)
  26. *
  27. * 'lastModifiedTime': timestamp of when this content changed. This
  28. * is recommended to allow both server and client-side caching.
  29. *
  30. * 'minifyAll': should all CSS and Javascript blocks be individually
  31. * minified? (default false)
  32. *
  33. * @todo Add 'file' option to read HTML file.
  34. */
  35. public function setupSources($options) {
  36. if (isset($options['file'])) {
  37. $sourceSpec = array(
  38. 'filepath' => $options['file']
  39. );
  40. } else {
  41. // strip controller options
  42. $sourceSpec = array(
  43. 'content' => $options['content']
  44. ,'id' => $options['id']
  45. );
  46. unset($options['content'], $options['id']);
  47. }
  48. if (isset($options['minifyAll'])) {
  49. // this will be the 2nd argument passed to Minify_HTML::minify()
  50. $sourceSpec['minifyOptions'] = array(
  51. 'cssMinifier' => array('Minify_CSS', 'minify')
  52. ,'jsMinifier' => array('JSMin', 'minify')
  53. );
  54. $this->_loadCssJsMinifiers = true;
  55. unset($options['minifyAll']);
  56. }
  57. $this->sources[] = new Minify_Source($sourceSpec);
  58. $options['contentType'] = Minify::TYPE_HTML;
  59. return $options;
  60. }
  61. protected $_loadCssJsMinifiers = false;
  62. /**
  63. * @see Minify_Controller_Base::loadMinifier()
  64. */
  65. public function loadMinifier($minifierCallback)
  66. {
  67. if ($this->_loadCssJsMinifiers) {
  68. // Minify will not call for these so we must manually load
  69. // them when Minify/HTML.php is called for.
  70. require_once 'Minify/CSS.php';
  71. require_once 'JSMin.php';
  72. }
  73. parent::loadMinifier($minifierCallback); // load Minify/HTML.php
  74. }
  75. }