diff options
author | zotlabs <mike@macgirvin.com> | 2016-11-28 11:19:20 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-11-28 11:19:20 -0800 |
commit | 90f3cc7328511083ec226305a7bd7faeda12cb39 (patch) | |
tree | d99b779b87cd483ee114b73118dfe6269d95c668 /include/wiki.php | |
parent | 7de4f1d96f5f1fe4dccd56c1456df1d82aa5c30b (diff) | |
parent | 683a09781ad9c9be00ce67e35f560e6fca051f3b (diff) | |
download | volse-hubzilla-90f3cc7328511083ec226305a7bd7faeda12cb39.tar.gz volse-hubzilla-90f3cc7328511083ec226305a7bd7faeda12cb39.tar.bz2 volse-hubzilla-90f3cc7328511083ec226305a7bd7faeda12cb39.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'include/wiki.php')
-rw-r--r-- | include/wiki.php | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/include/wiki.php b/include/wiki.php index d2cb51bd3..eb87840f6 100644 --- a/include/wiki.php +++ b/include/wiki.php @@ -31,16 +31,29 @@ function wiki_page_list($resource_id) { if (!$w['path']) { return array('pages' => null, 'wiki' => null); } - $pages = array(); - $pages[] = array('title' => 'Home', 'url' => 'Home'); + + $pages[] = [ + 'resource_id' => '', + 'title' => 'Home', + 'url' => 'Home', + 'link_id' => 'id_wiki_home_0' + ]; + if (is_dir($w['path']) === true) { $files = array_diff(scandir($w['path']), array('.', '..', '.git')); // TODO: Check that the files are all text files - + $i = 1; foreach($files as $file) { // strip the .md file extension and unwrap URL encoding to leave HTML encoded name - if( urldecode(substr($file, 0, -3)) !== 'Home') { - $pages[] = array('title' => urldecode(substr($file, 0, -3)), 'url' => urlencode(substr($file, 0, -3))); + $title = substr($file, 0, -3); + if(urldecode($title) !== 'Home') { + $pages[] = [ + 'resource_id' => $resource_id, + 'title' => urldecode($title), + 'url' => $title, + 'link_id' => 'id_' . substr($resource_id, 0, 10) . '_' . $i + ]; + $i++; } } } |