2006-08-14 23:11:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// this MUST be placed in post, as it assumes that any value in dir is valid
|
|
|
|
|
2006-08-20 21:55:28 +00:00
|
|
|
/**
|
|
|
|
* Post-trasnform that ensures that bdo tags have the dir attribute set.
|
|
|
|
*/
|
2006-08-14 23:11:28 +00:00
|
|
|
class HTMLPurifier_AttrTransform_BdoDir extends HTMLPurifier_AttrTransform
|
|
|
|
{
|
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function transform($attr, $config, $context) {
|
2006-08-18 01:27:14 +00:00
|
|
|
if (isset($attr['dir'])) return $attr;
|
2006-08-17 20:29:34 +00:00
|
|
|
$attr['dir'] = $config->get('Attr', 'DefaultTextDir');
|
|
|
|
return $attr;
|
2006-08-14 23:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|