From 0043ef66b68cbdf1ae978e04f8bdeca39e6efa64 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 10 Dec 2013 00:25:32 -0800 Subject: [PATCH] mod_network is now running under Comanche. Yay. --- boot.php | 5 ++++- mod/network.php | 9 --------- view/pdl/mod_network.pdl | 8 ++++++++ 3 files changed, 12 insertions(+), 10 deletions(-) create mode 100644 view/pdl/mod_network.pdl diff --git a/boot.php b/boot.php index a90d042a5..cf94c13e3 100755 --- a/boot.php +++ b/boot.php @@ -1808,7 +1808,10 @@ function get_custom_nav(&$a,$navname) { function construct_page(&$a) { require_once('include/comanche.php'); - + + if(file_exists('view/pdl/mod_' . $a->cmd . '.pdl')) + comanche_parser($a,@file_get_contents('view/pdl/mod_' . $a->cmd . '.pdl')); + $comanche = ((count($a->layout)) ? true : false); /** diff --git a/mod/network.php b/mod/network.php index 31b377432..754978949 100644 --- a/mod/network.php +++ b/mod/network.php @@ -16,15 +16,6 @@ function network_init(&$a) { $channel = $a->get_channel(); $a->profile_uid = local_user(); head_set_icon($channel['xchan_photo_s']); - - require_once('include/widgets.php'); - - $a->set_widget('collections',widget_collections(array())); - $a->set_widget('archives',widget_archive(array())); - $a->set_widget('suggestions',widget_suggestions(array())); - $a->set_widget('savedsearch',widget_savedsearch(array())); - $a->set_widget('filer',widget_filer(array())); - $a->set_widget('notes',widget_notes(array())); } diff --git a/view/pdl/mod_network.pdl b/view/pdl/mod_network.pdl new file mode 100644 index 000000000..e3d469842 --- /dev/null +++ b/view/pdl/mod_network.pdl @@ -0,0 +1,8 @@ +[region=aside] +[widget=collections][/widget] +[widget=archive][/widget] +[widget=suggestions][/widget] +[widget=savedsearch][/widget] +[widget=filer][/widget] +[widget=notes][/widget] +[/region]