use Friendica\Core\Logger;
use Friendica\Core\PConfig;
use Friendica\Util\Network;
+use Friendica\Util\XML;
function blogger_install()
{
return;
}
- $bl_username = xmlify(PConfig::get($b['uid'], 'blogger', 'bl_username'));
- $bl_password = xmlify(PConfig::get($b['uid'], 'blogger', 'bl_password'));
+ $bl_username = XML::xmlify(PConfig::get($b['uid'], 'blogger', 'bl_username'));
+ $bl_password = XML::xmlify(PConfig::get($b['uid'], 'blogger', 'bl_password'));
$bl_blog = PConfig::get($b['uid'], 'blogger', 'bl_blog');
if ($bl_username && $bl_password && $bl_blog) {
$title = '<title>' . (($b['title']) ? $b['title'] : L10n::t('Post from Friendica')) . '</title>';
$post = $title . BBCode::convert($b['body']);
- $post = xmlify($post);
+ $post = XML::xmlify($post);
$xml = <<< EOT
<?xml version=\"1.0\" encoding=\"utf-8\"?>
use Friendica\Database\DBA;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
+use Friendica\Util\XML;
function dwpost_install()
{
if ($dw_username && $dw_password && $dw_blog) {
$title = $b['title'];
$post = BBCode::convert($b['body']);
- $post = xmlify($post);
+ $post = XML::xmlify($post);
$tags = dwpost_get_tags($b['tag']);
$date = DateTimeFormat::convert($b['created'], $tz);
use Friendica\Core\PConfig;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
+use Friendica\Util\XML;
function ijpost_install()
{
if ($ij_username && $ij_password && $ij_blog) {
$title = $b['title'];
$post = BBCode::convert($b['body']);
- $post = xmlify($post);
+ $post = XML::xmlify($post);
$tags = ijpost_get_tags($b['tag']);
$date = DateTimeFormat::convert($b['created'], $tz);
use Friendica\Core\PConfig;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
+use Friendica\Util\XML;
function ljpost_install() {
Addon::registerHook('post_local', 'addon/ljpost/ljpost.php', 'ljpost_post_local');
if($x && strlen($x[0]['timezone']))
$tz = $x[0]['timezone'];
- $lj_username = xmlify(PConfig::get($b['uid'],'ljpost','lj_username'));
- $lj_password = xmlify(PConfig::get($b['uid'],'ljpost','lj_password'));
- $lj_journal = xmlify(PConfig::get($b['uid'],'ljpost','lj_journal'));
+ $lj_username = XML::xmlify(PConfig::get($b['uid'],'ljpost','lj_username'));
+ $lj_password = XML::xmlify(PConfig::get($b['uid'],'ljpost','lj_password'));
+ $lj_journal = XML::xmlify(PConfig::get($b['uid'],'ljpost','lj_journal'));
// if(! $lj_journal)
// $lj_journal = $lj_username;
- $lj_blog = xmlify(PConfig::get($b['uid'],'ljpost','lj_blog'));
+ $lj_blog = XML::xmlify(PConfig::get($b['uid'],'ljpost','lj_blog'));
if(! strlen($lj_blog))
- $lj_blog = xmlify('http://www.livejournal.com/interface/xmlrpc');
+ $lj_blog = XML::xmlify('http://www.livejournal.com/interface/xmlrpc');
if($lj_username && $lj_password && $lj_blog) {
- $title = xmlify($b['title']);
+ $title = XML::xmlify($b['title']);
$post = BBCode::convert($b['body']);
- $post = xmlify($post);
+ $post = XML::xmlify($post);
$tags = ljpost_get_tags($b['tag']);
$date = DateTimeFormat::convert($b['created'], $tz);
use Friendica\Model\User;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
+use Friendica\Util\XML;
require 'addon/pumpio/oauth/http.php';
require 'addon/pumpio/oauth/oauth_client.php';
$likedata['body'] = L10n::t('%1$s likes %2$s\'s %3$s', $author, $objauthor, $plink);
$likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
- '<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
+ '<id>' . $orig_post['uri'] . '</id><link>' . XML::xmlify('<link rel="alternate" type="text/html" href="' . XML::xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
$ret = Item::insert($likedata);
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
+use Friendica\Util\XML;
function qcomment_install() {
Addon::registerHook('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
$s .= '<div id="qcomment-wrapper">';
$s .= '<div id="qcomment-desc">' . L10n::t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.") . '</div>';
$s .= '<label id="qcomment-label" for="qcomment-words">' . L10n::t('Enter quick comments, one per line') . ' </label>';
- $s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(unxmlify($words)) . '</textarea>';
+ $s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(XML::unxmlify($words)) . '</textarea>';
$s .= '</div><div class="clear"></div>';
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
return;
}
-function qcomment_addon_settings_post(&$a,&$b) {
-
- if(! local_user())
+function qcomment_addon_settings_post(&$a, &$b)
+{
+ if (! local_user()) {
return;
+ }
- if($_POST['qcomment-submit']) {
- PConfig::set(local_user(),'qcomment','words',xmlify($_POST['qcomment-words']));
+ if ($_POST['qcomment-submit']) {
+ PConfig::set(local_user(), 'qcomment', 'words', XML::xmlify($_POST['qcomment-words']));
info(L10n::t('Quick Comment settings saved.') . EOL);
}
}
use Friendica\Core\PConfig;
use Friendica\Database\DBA;
use Friendica\Util\Network;
+use Friendica\Util\XML;
function wppost_install() {
Addon::registerHook('post_local', 'addon/wppost/wppost.php', 'wppost_post_local');
return;
}
- $wp_username = xmlify(PConfig::get($b['uid'],'wppost','wp_username'));
- $wp_password = xmlify(PConfig::get($b['uid'],'wppost','wp_password'));
+ $wp_username = XML::(PConfig::get($b['uid'], 'wppost', 'wp_username'));
+ $wp_password = XML::xmlify(PConfig::get($b['uid'], 'wppost',' wp_password'));
$wp_blog = PConfig::get($b['uid'],'wppost','wp_blog');
$wp_backlink_text = PConfig::get($b['uid'],'wppost','wp_backlink_text');
if ($wp_backlink_text == '') {
. $wp_backlink_text . '</a>' . EOL . EOL;
}
- $post = xmlify($post);
+ $post = XML::xmlify($post);
$xml = <<< EOT