ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
BdoDir.php
Go to the documentation of this file.
1 <?php
2 
3 // this MUST be placed in post, as it assumes that any value in dir is valid
4 
9 {
10 
17  public function transform($attr, $config, $context)
18  {
19  if (isset($attr['dir'])) {
20  return $attr;
21  }
22  $attr['dir'] = $config->get('Attr.DefaultTextDir');
23  return $attr;
24  }
25 }
26 
27 // vim: et sw=4 sts=4