diff --git a/mod/smilies.php b/mod/smilies.php index a33cbf6ad5..1c0a1bbd76 100644 --- a/mod/smilies.php +++ b/mod/smilies.php @@ -8,18 +8,24 @@ use Friendica\Core\System; /** * @param object $a App - * @return mixed + * @return string */ function smilies_content(App $a) { + $smilies = Smilies::getList(); if ($a->argv[1] === "json") { - $tmp = Smilies::getList(); $results = []; - for ($i = 0; $i < count($tmp['texts']); $i++) { - $results[] = ['text' => $tmp['texts'][$i], 'icon' => $tmp['icons'][$i]]; + for ($i = 0; $i < count($smilies['texts']); $i++) { + $results[] = ['text' => $smilies['texts'][$i], 'icon' => $smilies['icons'][$i]]; } System::jsonExit($results); } else { - return Smilies::replace('', true); + $s = '
and tags.
+ *
+ * @param string $text An HTML string
+ * @param array $smilies An string replacement array with the following structure: ['texts' => [], 'icons' => []]
+ * @param bool $no_images Only replace shortcodes without image replacement (e.g. Unicode characters)
+ * @return string
+ */
+ public static function replaceFromArray($text, array $smilies, $no_images = false)
{
if (intval(Config::get('system', 'no_smilies'))
|| (local_user() && intval(PConfig::get(local_user(), 'system', 'no_smilies')))
) {
- return $s;
+ return $text;
}
- $s = preg_replace_callback('/(.*?)<\/pre>/ism', 'self::encode', $s);
- $s = preg_replace_callback('/(.*?)<\/code>/ism', 'self::encode', $s);
-
- $params = self::getList();
+ $text = preg_replace_callback('/(.*?)<\/pre>/ism' , 'self::encode', $text);
+ $text = preg_replace_callback('/(.*?)<\/code>/ism', 'self::encode', $text);
if ($no_images) {
$cleaned = ['texts' => [], 'icons' => []];
- $icons = $params['icons'];
+ $icons = $smilies['icons'];
foreach ($icons as $key => $icon) {
if (!strstr($icon, '';
- for ($x = 0; $x < count($params['texts']); $x ++) {
- $s .= '- ' . $params['texts'][$x] . '
- ' . $params['icons'][$x] . '
';
- }
- } else {
- $params['string'] = preg_replace_callback('/<(3+)/', 'self::pregHeart', $params['string']);
- $s = self::strOrigReplace($params['texts'], $params['icons'], $params['string']);
- }
+ $text = preg_replace_callback('/(.*?)<\/pre>/ism', 'self::decode', $text);
+ $text = preg_replace_callback('/(.*?)<\/code>/ism', 'self::decode', $text);
- $s = preg_replace_callback('/(.*?)<\/pre>/ism', 'self::decode', $s);
- $s = preg_replace_callback('/(.*?)<\/code>/ism', 'self::decode', $s);
-
- return $s;
+ return $text;
}
/**
diff --git a/src/Model/Profile.php b/src/Model/Profile.php
index 1f09b7cc8d..c16fb745a7 100644
--- a/src/Model/Profile.php
+++ b/src/Model/Profile.php
@@ -992,13 +992,13 @@ class Profile
/**
* Process the 'zrl' parameter and initiate the remote authentication.
- *
+ *
* This method checks if the visitor has a public contact entry and
* redirects the visitor to his/her instance to start the magic auth (Authentication)
* process.
- *
+ *
* Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
- *
+ *
* @param App $a Application instance.
*/
public static function zrlInit(App $a)
@@ -1060,7 +1060,7 @@ class Profile
* OpenWebAuth authentication.
*
* Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
- *
+ *
* @param string $token
*/
public static function openWebAuthInit($token)
@@ -1159,7 +1159,7 @@ class Profile
/**
* Stip zrl parameter from a string.
- *
+ *
* @param string $s The input string.
* @return string The zrl.
*/
@@ -1170,7 +1170,7 @@ class Profile
/**
* Stip query parameter from a string.
- *
+ *
* @param string $s The input string.
* @return string The query parameter.
*/