Merge pull request #22532 from seamuslee001/dev_core_3034
[civicrm-core.git] / CRM / Core / Smarty / plugins / block.serialize.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 * CiviCRM's Smarty gettext plugin
14 *
15 * @package CRM
16 * @author Donald Lobo <lobo@civicrm.org>
ca5cec67 17 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
18 */
19
20/**
21 * Smarty block function providing serialization support
22 *
23 * See CRM_Core_I18n class documentation for details.
24 *
6a0b768e
TO
25 * @param array $params
26 * Template call's parameters.
27 * @param string $text
28 * {serialize} block contents from the template.
16b10e64 29 * @param CRM_Core_Smarty $smarty
6a0b768e 30 * The Smarty object.
6a488035 31 *
a6c01b45 32 * @return string
353ffa53 33 * the string, translated by gettext
6a488035
TO
34 */
35function smarty_block_serialize($params, $text, &$smarty) {
36 return serialize($text);
37}