You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
643 B
20 lines
643 B
<?php |
|
|
|
/* |
|
* Smarty plugin |
|
* ------------------------------------------------------------- |
|
* File: modifier.xla.php |
|
* Type: modifier |
|
* Name: xla |
|
* Purpose: Translate via xl() and then escape via text(). |
|
* ------------------------------------------------------------- |
|
* @package openemr |
|
* @link http://www.open-emr.org |
|
* @author Stephen Nielson <stephen@nielson.org> |
|
* @copyright Copyright (c) 2021 Stephen Nielson <stephen@nielson.org> |
|
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 |
|
*/ |
|
function smarty_modifier_xlt($translate) |
|
{ |
|
return \xlt($translate); |
|
}
|
|
|