XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
TagTransform.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
12  public $transform_to;
13 
20  abstract public function transform($tag, $config, $context);
21 
29  protected function prependCSS(&$attr, $css) {
30  $attr['style'] = isset($attr['style']) ? $attr['style'] : '';
31  $attr['style'] = $css . $attr['style'];
32  }
33 
34 }
35 
36 // vim: et sw=4 sts=4