Delete block.serialize.php
authorlarssandergreen <lars@wildsight.ca>
Sun, 24 Sep 2023 18:51:37 +0000 (12:51 -0600)
committerlarssandergreen <lars@wildsight.ca>
Sun, 24 Sep 2023 18:51:37 +0000 (12:51 -0600)
CRM/Core/Smarty/plugins/block.serialize.php [deleted file]

diff --git a/CRM/Core/Smarty/plugins/block.serialize.php b/CRM/Core/Smarty/plugins/block.serialize.php
deleted file mode 100644 (file)
index e716631..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-/*
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC. All rights reserved.                        |
- |                                                                    |
- | This work is published under the GNU AGPLv3 license with some      |
- | permitted exceptions and without any warranty. For full license    |
- | and copyright information, see https://civicrm.org/licensing       |
- +--------------------------------------------------------------------+
- */
-
-/**
- * CiviCRM's Smarty gettext plugin
- *
- * @package CRM
- * @author Donald Lobo <lobo@civicrm.org>
- * @copyright CiviCRM LLC https://civicrm.org/licensing
- */
-
-/**
- * Smarty block function providing serialization support
- *
- * See CRM_Core_I18n class documentation for details.
- *
- * @param array $params
- *   Template call's parameters.
- * @param string $text
- *   {serialize} block contents from the template.
- * @param CRM_Core_Smarty $smarty
- *   The Smarty object.
- *
- * @return string
- *   the string, translated by gettext
- */
-function smarty_block_serialize($params, $text, &$smarty) {
-  return serialize($text);
-}