diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/acctlink.php | 16 | ||||
-rw-r--r-- | mod/apps.php | 11 | ||||
-rw-r--r-- | mod/notice.php | 20 | ||||
-rw-r--r-- | mod/oembed.php | 38 | ||||
-rw-r--r-- | mod/oexchange.php | 9 | ||||
-rw-r--r-- | mod/opensearch.php | 22 |
6 files changed, 39 insertions, 77 deletions
diff --git a/mod/acctlink.php b/mod/acctlink.php deleted file mode 100644 index a2365803a..000000000 --- a/mod/acctlink.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -require_once('include/Scrape.php'); - -function acctlink_init(&$a) { - - if(x($_GET,'addr')) { - $addr = trim($_GET['addr']); - $res = probe_url($addr); - //logger('acctlink: ' . print_r($res,true)); - if($res['url']) { - goaway($res['url']); - killme(); - } - } -} diff --git a/mod/apps.php b/mod/apps.php index 8049b45fb..43540a3de 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,18 +1,17 @@ <?php function apps_content(&$a) { - $title = t('Applications'); - if(count($a->apps)==0) + $apps = $a->get_apps(); + + if(count($apps) == 0) notice( t('No installed applications.') . EOL); $tpl = get_markup_template("apps.tpl"); return replace_macros($tpl, array( - '$title' => $title, - '$apps' => $a->apps, + '$title' => t('Applications'), + '$apps' => $apps, )); - - } diff --git a/mod/notice.php b/mod/notice.php deleted file mode 100644 index 19cf53189..000000000 --- a/mod/notice.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - /* identi.ca -> friendica items permanent-url compatibility */ - - function notice_init(&$a){ - $id = $a->argv[1]; - $r = q("SELECT user.nickname FROM user LEFT JOIN item ON item.uid=user.uid WHERE item.id=%d", - intval($id) - ); - if (count($r)){ - $nick = $r[0]['nickname']; - $url = $a->get_baseurl()."/display/$nick/$id"; - goaway($url); - } else { - $a->error = 404; - notice( t('Item not found.') . EOL); - - } - return; - - } diff --git a/mod/oembed.php b/mod/oembed.php index 236625f68..720a6d72b 100644 --- a/mod/oembed.php +++ b/mod/oembed.php @@ -1,28 +1,30 @@ <?php require_once("include/oembed.php"); -function oembed_content(&$a){ +function oembed_init(&$a){ // logger('mod_oembed ' . $a->query_string, LOGGER_ALL); - if ($a->argv[1]=='b2h'){ - $url = array( "", trim(hex2bin($_REQUEST['url']))); - echo oembed_replacecb($url); - killme(); - } + if(argc() > 1) { + if (argv(1) == 'b2h'){ + $url = array( "", trim(hex2bin($_REQUEST['url']))); + echo oembed_replacecb($url); + killme(); + } - if ($a->argv[1]=='h2b'){ - $text = trim(hex2bin($_REQUEST['text'])); - echo oembed_html2bbcode($text); - killme(); - } + elseif (argv(1) == 'h2b'){ + $text = trim(hex2bin($_REQUEST['text'])); + echo oembed_html2bbcode($text); + killme(); + } - if ($a->argc == 2){ - echo "<html><body>"; - $url = base64url_decode($a->argv[1]); - $j = oembed_fetch_url($url); - echo $j->html; -// logger('mod-oembed ' . $j->html, LOGGER_ALL); - echo "</body></html>"; + else { + echo "<html><body>"; + $url = base64url_decode($argv(1)); + $j = oembed_fetch_url($url); + echo $j->html; +// logger('mod-oembed ' . $j->html, LOGGER_ALL); + echo "</body></html>"; + } } killme(); } diff --git a/mod/oexchange.php b/mod/oexchange.php index bbb436e70..791a493ff 100644 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -3,25 +3,22 @@ function oexchange_init(&$a) { - if(($a->argc > 1) && ($a->argv[1] === 'xrd')) { + if((argc() > 1) && (argv(1) === 'xrd')) { $tpl = get_markup_template('oexchange_xrd.tpl'); $o = replace_macros($tpl, array('$base' => $a->get_baseurl())); echo $o; killme(); } - - } function oexchange_content(&$a) { if(! local_user()) { - $o = login(false); - return $o; + return login(false); } - if(($a->argc > 1) && $a->argv[1] === 'done') { + if((argc() > 1) && argv(1) === 'done') { info( t('Post successful.') . EOL); return; } diff --git a/mod/opensearch.php b/mod/opensearch.php index ff748d1c5..d28c4f1b8 100644 --- a/mod/opensearch.php +++ b/mod/opensearch.php @@ -1,18 +1,18 @@ <?php - function opensearch_content(&$a) { + +function opensearch_init(&$a) { - $tpl = get_markup_template('opensearch.tpl'); + $tpl = get_markup_template('opensearch.tpl'); - header("Content-type: application/opensearchdescription+xml"); + header("Content-type: application/opensearchdescription+xml"); - $o = replace_macros($tpl, array( - '$baseurl' => $a->get_baseurl(), - '$nodename' => $a->get_hostname(), - )); + $o = replace_macros($tpl, array( + '$baseurl' => $a->get_baseurl(), + '$nodename' => $a->get_hostname(), + )); - echo $o; + echo $o; - killme(); + killme(); - } -?>
\ No newline at end of file +} |