X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ljpost%2Fljpost.php;h=ec99f9ba9361585971ed4b12810d44230fd67828;hb=88ca2f5a1e83c2cd93c6b08863fdd361a3a9bd69;hp=7843d6f3912791adcd81adcd96d58068779abea2;hpb=96c41e56233765571870b56081efc366655bead4;p=friendica-addons.git diff --git a/ljpost/ljpost.php b/ljpost/ljpost.php index 7843d6f3..ec99f9ba 100644 --- a/ljpost/ljpost.php +++ b/ljpost/ljpost.php @@ -7,8 +7,13 @@ * Author: Michael Johnston * Author: Cat Gray */ + +use Friendica\Content\Text\BBCode; use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; +use Friendica\Util\DateTimeFormat; +use Friendica\Util\Network; function ljpost_install() { Addon::registerHook('post_local', 'addon/ljpost/ljpost.php', 'ljpost_post_local'); @@ -37,7 +42,7 @@ function ljpost_jot_nets(&$a,&$b) { $lj_defpost = PConfig::get(local_user(),'ljpost','post_by_default'); $selected = ((intval($lj_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' - . t('Post to LiveJournal') . '
'; + . L10n::t('Post to LiveJournal') . ''; } } @@ -68,30 +73,30 @@ function ljpost_settings(&$a,&$s) { /* Add some HTML to the existing form */ $s .= '
'; - $s .= '

' . t('LiveJournal Post Settings') . '

'; + $s .= '

' . L10n::t('LiveJournal Post Settings') . '

'; $s .= '
'; - $s .= ''; + $s .= ''; $s .= ''; $s .= '
'; $s .= '
'; - $s .= ''; + $s .= ''; $s .= ''; $s .= '
'; $s .= '
'; - $s .= ''; + $s .= ''; $s .= ''; $s .= '
'; $s .= '
'; - $s .= ''; + $s .= ''; $s .= ''; $s .= '
'; /* provide a submit button */ - $s .= '
'; + $s .= '
'; } @@ -174,16 +179,12 @@ function ljpost_send(&$a,&$b) { $lj_blog = xmlify('http://www.livejournal.com/interface/xmlrpc'); if($lj_username && $lj_password && $lj_blog) { - - require_once('include/bbcode.php'); - require_once('include/datetime.php'); - $title = xmlify($b['title']); - $post = bbcode($b['body']); + $post = BBCode::convert($b['body']); $post = xmlify($post); $tags = ljpost_get_tags($b['tag']); - $date = datetime_convert('UTC',$tz,$b['created'],'Y-m-d H:i:s'); + $date = DateTimeFormat::convert($b['created'], $tz); $year = intval(substr($date,0,4)); $mon = intval(substr($date,5,2)); $day = intval(substr($date,8,2)); @@ -232,10 +233,10 @@ EOT; logger('ljpost: data: ' . $xml, LOGGER_DATA); - if($lj_blog !== 'test') - $x = post_url($lj_blog,$xml,["Content-Type: text/xml"]); + if ($lj_blog !== 'test') { + $x = Network::post($lj_blog, $xml, ["Content-Type: text/xml"]); + } logger('posted to livejournal: ' . ($x) ? $x : '', LOGGER_DEBUG); - } }