Merge pull request #22928 from artfulrobot/artfulrobot-title-double-html-encoding
[civicrm-core.git] / Civi / Api4 / Query / SqlFunctionREPLACE.php
CommitLineData
e7f6def6
CW
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12namespace Civi\Api4\Query;
13
14/**
15 * Sql function
16 */
17class SqlFunctionREPLACE extends SqlFunction {
18
19 protected static $category = self::CATEGORY_STRING;
20
f19a0f00
CW
21 protected static function params(): array {
22 return [
23 [
9e9feedf
CW
24 'optional' => FALSE,
25 'must_be' => ['SqlField', 'SqlString'],
26 'label' => ts('Source'),
27 ],
28 [
29 'optional' => FALSE,
30 'must_be' => ['SqlString', 'SqlField'],
31 'label' => ts('Find'),
32 ],
33 [
f19a0f00 34 'optional' => FALSE,
1fe4682d 35 'must_be' => ['SqlString', 'SqlField'],
9e9feedf 36 'label' => ts('Replace'),
f19a0f00
CW
37 ],
38 ];
39 }
e7f6def6 40
9cae8a07
CW
41 /**
42 * @return string
43 */
44 public static function getTitle(): string {
1fe4682d
CW
45 return ts('Replace text');
46 }
47
48 /**
49 * @return string
50 */
51 public static function getDescription(): string {
52 return ts('Substitutes one value for another in the text.');
9cae8a07
CW
53 }
54
e7f6def6 55}