/source/minifier/plugins/CssVariablesMinifierPlugin.php

http://cssmin.googlecode.com/ · PHP · 112 lines · 51 code · 0 blank · 61 comment · 6 complexity · 7438c0a62ec3a3b65fe02213d4f4be4a MD5 · raw file

  1. <?php
  2. /**
  3. * This {@link aCssMinifierPlugin} will process var-statement and sets the declaration value to the variable value.
  4. *
  5. * This plugin only apply the variable values. The variable values itself will get parsed by the
  6. * {@link CssVariablesMinifierFilter}.
  7. *
  8. * Example:
  9. * <code>
  10. * @variables
  11. * {
  12. * defaultColor: black;
  13. * }
  14. * color: var(defaultColor);
  15. * </code>
  16. *
  17. * Will get converted to:
  18. * <code>
  19. * color:black;
  20. * </code>
  21. *
  22. * @package CssMin/Minifier/Plugins
  23. * @link http://code.google.com/p/cssmin/
  24. * @author Joe Scylla <joe.scylla@gmail.com>
  25. * @copyright 2008 - 2011 Joe Scylla <joe.scylla@gmail.com>
  26. * @license http://opensource.org/licenses/mit-license.php MIT License
  27. * @version 3.0.1
  28. */
  29. class CssVariablesMinifierPlugin extends aCssMinifierPlugin
  30. {
  31. /**
  32. * Regular expression matching a value.
  33. *
  34. * @var string
  35. */
  36. private $reMatch = "/var\((.+)\)/iSU";
  37. /**
  38. * Parsed variables.
  39. *
  40. * @var array
  41. */
  42. private $variables = null;
  43. /**
  44. * Returns the variables.
  45. *
  46. * @return array
  47. */
  48. public function getVariables()
  49. {
  50. return $this->variables;
  51. }
  52. /**
  53. * Implements {@link aCssMinifierPlugin::minify()}.
  54. *
  55. * @param aCssToken $token Token to process
  56. * @return boolean Return TRUE to break the processing of this token; FALSE to continue
  57. */
  58. public function apply(aCssToken &$token)
  59. {
  60. if (stripos($token->Value, "var") !== false && preg_match_all($this->reMatch, $token->Value, $m))
  61. {
  62. $mediaTypes = $token->MediaTypes;
  63. if (!in_array("all", $mediaTypes))
  64. {
  65. $mediaTypes[] = "all";
  66. }
  67. for ($i = 0, $l = count($m[0]); $i < $l; $i++)
  68. {
  69. $variable = trim($m[1][$i]);
  70. foreach ($mediaTypes as $mediaType)
  71. {
  72. if (isset($this->variables[$mediaType], $this->variables[$mediaType][$variable]))
  73. {
  74. // Variable value found => set the declaration value to the variable value and return
  75. $token->Value = str_replace($m[0][$i], $this->variables[$mediaType][$variable], $token->Value);
  76. continue 2;
  77. }
  78. }
  79. // If no value was found trigger an error and replace the token with a CssNullToken
  80. CssMin::triggerError(new CssError(__FILE__, __LINE__, __METHOD__ . ": No value found for variable <code>" . $variable . "</code> in media types <code>" . implode(", ", $mediaTypes) . "</code>", (string) $token));
  81. $token = new CssNullToken();
  82. return true;
  83. }
  84. }
  85. return false;
  86. }
  87. /**
  88. * Implements {@link aMinifierPlugin::getTriggerTokens()}
  89. *
  90. * @return array
  91. */
  92. public function getTriggerTokens()
  93. {
  94. return array
  95. (
  96. "CssAtFontFaceDeclarationToken",
  97. "CssAtPageDeclarationToken",
  98. "CssRulesetDeclarationToken"
  99. );
  100. }
  101. /**
  102. * Sets the variables.
  103. *
  104. * @param array $variables Variables to set
  105. * @return void
  106. */
  107. public function setVariables(array $variables)
  108. {
  109. $this->variables = $variables;
  110. }
  111. }
  112. ?>