Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

24 lines
1.0KB

  1. Configuration
  2. Configuration is documented on a per-use case: if a class uses a certain
  3. value from the configuration object, it has to define its name and what the
  4. value is used for. This means decentralized configuration declarations that
  5. are nevertheless error checking and a centralized configuration object.
  6. Directives are divided into namespaces, indicating the major portion of
  7. functionality they cover (although there may be overlaps). Please consult
  8. the documentation in ConfigDef for more information on these namespaces.
  9. Since configuration is dependant on context, internal classes require a
  10. configuration object to be passed as a parameter. (They also require a
  11. Context object). A majority of classes do not need the config object,
  12. but for those who do, it is a lifesaver.
  13. Definition objects are complex datatypes influenced by their respective
  14. directive namespaces (HTMLDefinition with HTML and CSSDefinition with CSS).
  15. If any of these directives is updated, HTML Purifier forces the definition
  16. to be regenerated.
  17. vim: et sw=4 sts=4