diff options
author | friendica <info@friendica.com> | 2013-07-10 16:39:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-10 16:39:32 -0700 |
commit | df23bc9ad4511c1faab2efcf9a3558d81a8c2058 (patch) | |
tree | 33f4bb457a14c94ab8d48ec144538918f2b47c96 /mod/webpages.php | |
parent | 72d737cc82f5987791c9ceba0c8b99a505886274 (diff) | |
parent | 40a444f01b2d3e7cc9b9c8822a2e36c47e6a25f6 (diff) | |
download | volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.tar.gz volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.tar.bz2 volse-hubzilla-df23bc9ad4511c1faab2efcf9a3558d81a8c2058.zip |
Merge pull request #73 from beardy-unixer/master
Webpages
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/mod/webpages.php b/mod/webpages.php new file mode 100644 index 000000000..3a3e30309 --- /dev/null +++ b/mod/webpages.php @@ -0,0 +1,72 @@ +<?php + +function webpages_init(&$a) { + + if(argc() > 1) + $which = argv(1); + else { + notice( t('Requested profile is not available.') . EOL ); + $a->error = 404; + return; + } + + $profile = 0; + $channel = $a->get_channel(); + + if((local_user()) && (argc() > 2) && (argv(2) === 'view')) { + $which = $channel['channel_address']; + $profile = argv(1); + } + + profile_load($a,$which,$profile); + +} + +function webpages_content(&$a) { + +// We can do better, but since editing only works for local users and all posts are webpages, return anyone else for now. + +if (!local_user()) return; + + +// Create a status editor (for now - we'll need a WYSIWYG eventually) to create pages +require_once ('include/conversation.php'); + $x = array( + 'webpage' => 1, + 'is_owner' => true, + 'nickname' => $channel['channel_address'], + 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), + 'bang' => (($group || $cid) ? '!' : ''), + 'visitor' => 'block', + 'profile_uid' => local_user() + ); + + $o .= status_editor($a,$x); + +//Get a list of webpages. We can't display all them because endless scroll makes that unusable, so just list titles and an edit link. +// FIXME - we should sort these results, but it's not obvious what order yet. Alphabetical? Created order? + +$r = q("select * from item_id where uid = %d and service = 'WEBPAGE'", + intval(local_user()) +); + + $pages = null; + + if($r) { + $pages = array(); + foreach($r as $rr) { + $pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid']); + } + } + + //Something is bound to go wrong, so we'll log it - if nothing has blown up in a few days, this should be nuked. + logger('mod_webpages: pages: ' . print_r($pages,true), LOGGER_DATA); + + +// This isn't pretty, but it works. Until I figure out what to do with the UI, it's Good Enough(TM). + return $o . replace_macros(get_markup_template("webpagelist.tpl"), array( + '$pages' => $pages + )); + + +} |