require 'addon/buffer/bufferapp.php';
use Friendica\App;
-use Friendica\Content\Text\Plaintext;
+use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
$item["body"] = preg_replace("(\[s\](.*?)\[\/s\])ism",'-$1-',$item["body"]);
}
- $post = Plaintext::toPlaintext($item, $limit, $includedlinks, $htmlmode);
+ $post = BBCode::toPlaintext($item, $limit, $includedlinks, $htmlmode);
logger("buffer_send: converted message ".$b["id"]." result: ".print_r($post, true), LOGGER_DEBUG);
// The image proxy is used as a sanitizer. Buffer seems to be really picky about pictures
if (($profile->service == "twitter") && isset($post["url"]) && ($post["type"] != "photo"))
$post["text"] .= " ".$post["url"];
elseif (($profile->service == "appdotnet") && isset($post["url"]) && isset($post["title"]) && ($post["type"] != "photo")) {
- $post["title"] = Plaintext::shortenMsg($post["title"], 90);
- $post["text"] = Plaintext::shortenMsg($post["text"], $limit - (24 + strlen($post["title"])));
+ $post["title"] = BBCode::shortenMsg($post["title"], 90);
+ $post["text"] = BBCode::shortenMsg($post["text"], $limit - (24 + strlen($post["title"])));
$post["text"] .= "\n[".$post["title"]."](".$post["url"].")";
} elseif (($profile->service == "appdotnet") && isset($post["url"]) && ($post["type"] != "photo"))
$post["text"] .= " ".$post["url"];
use Friendica\App;
use Friendica\Content\OEmbed;
-use Friendica\Content\Text\Plaintext;
+use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
$tempfile = "";
require_once "include/network.php";
- $msgarr = Plaintext::toPlaintext($b, $max_char, true, 7);
+ $msgarr = BBCode::toPlaintext($b, $max_char, true, 7);
$msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"]))
- $msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50);
+ $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
$image = "";
}
}
- $msgarr = Plaintext::toPlaintext($item, $max_char, true, 7);
+ $msgarr = BBCode::toPlaintext($item, $max_char, true, 7);
$msg = $msgarr["text"];
if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
require_once 'library/OAuth1.php';
require_once 'addon/tumblr/tumblroauth/tumblroauth.php';
-use Friendica\Content\Text\Plaintext;
+use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
$title = trim($b['title']);
- $siteinfo = Plaintext::getAttachedData($b["body"]);
+ $siteinfo = BBCode::getAttachedData($b["body"]);
$params = [
'state' => 'published',
use Friendica\App;
use Friendica\Content\OEmbed;
-use Friendica\Content\Text\Plaintext;
+use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
$tweet = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$max_char = 280;
- $msgarr = Plaintext::toPlaintext($b, $max_char, true, 8);
+ $msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
$msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"])) {
- $msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50);
+ $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
}
$image = "";
if (strlen($msg) && ($image == "")) {
// -----------------
$max_char = 280;
- $msgarr = Plaintext::toPlaintext($b, $max_char, true, 8);
+ $msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
$msg = $msgarr["text"];
if (($msg == "") && isset($msgarr["title"])) {
- $msg = Plaintext::shortenMsg($msgarr["title"], $max_char - 50);
+ $msg = BBCode::shortenMsg($msgarr["title"], $max_char - 50);
}
if (isset($msgarr["url"])) {
}
}
- $msgarr = Plaintext::toPlaintext($item, $max_char, true, 8);
+ $msgarr = BBCode::toPlaintext($item, $max_char, true, 8);
$msg = $msgarr["text"];
if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
* Version: 1.1
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
-use Friendica\Content\Text\Plaintext;
+use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
if (intval(PConfig::get($b['uid'], 'wppost', 'shortcheck'))) {
// Checking, if its a post that is worth a blog post
$postentry = false;
- $siteinfo = Plaintext::getAttachedData($b["body"]);
+ $siteinfo = BBCode::getAttachedData($b["body"]);
// Is it a link to an aricle, a video or a photo?
if (isset($siteinfo["type"])) {
// If the title is empty then try to guess
if ($wptitle == '') {
// Fetch information about the post
- $siteinfo = Plaintext::getAttachedData($b["body"]);
+ $siteinfo = BBCode::getAttachedData($b["body"]);
if (isset($siteinfo["title"])) {
$wptitle = $siteinfo["title"];
}