-
-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LEFT, RIGHT & SUBSTRING SQL functions, with a test
- Loading branch information
Showing
4 changed files
with
167 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?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 | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
namespace Civi\Api4\Query; | ||
|
||
/** | ||
* Sql function | ||
*/ | ||
class SqlFunctionLEFT extends SqlFunction { | ||
|
||
protected static $category = self::CATEGORY_STRING; | ||
|
||
protected static $dataType = 'String'; | ||
|
||
protected static function params(): array { | ||
return [ | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlField', 'SqlString'], | ||
'label' => ts('Source'), | ||
], | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlNumber'], | ||
'label' => ts('Number of characters'), | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getTitle(): string { | ||
return ts('Left part of text'); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getDescription(): string { | ||
return ts('Extracts a number of characters from text starting from the left.'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?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 | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
namespace Civi\Api4\Query; | ||
|
||
/** | ||
* Sql function | ||
*/ | ||
class SqlFunctionRIGHT extends SqlFunction { | ||
|
||
protected static $category = self::CATEGORY_STRING; | ||
|
||
protected static $dataType = 'String'; | ||
|
||
protected static function params(): array { | ||
return [ | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlField', 'SqlString'], | ||
'label' => ts('Source'), | ||
], | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlNumber'], | ||
'label' => ts('Number of characters'), | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getTitle(): string { | ||
return ts('Right part of text'); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getDescription(): string { | ||
return ts('Extracts a number of characters from text starting from the right.'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?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 | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
|
||
namespace Civi\Api4\Query; | ||
|
||
/** | ||
* Sql function | ||
*/ | ||
class SqlFunctionSUBSTRING extends SqlFunction { | ||
|
||
protected static $category = self::CATEGORY_STRING; | ||
|
||
protected static $dataType = 'String'; | ||
|
||
protected static function params(): array { | ||
return [ | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlField', 'SqlString'], | ||
'label' => ts('Source'), | ||
], | ||
[ | ||
'optional' => FALSE, | ||
'must_be' => ['SqlNumber'], | ||
'label' => ts('Starting position in string. Negative numbers count from the end of the string.'), | ||
], | ||
[ | ||
'optional' => TRUE, | ||
'must_be' => ['SqlNumber'], | ||
'label' => ts('Number of characters'), | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getTitle(): string { | ||
return ts('Extract part of text'); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public static function getDescription(): string { | ||
return ts('Extracts a number of characters from text starting from a given position.'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters