Let's use the right files, plus a typo
This commit is contained in:
30
mod/webpages.php
Normal file
30
mod/webpages.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
function webpages_content(&$a) {
|
||||
|
||||
|
||||
$r = q("select * from item_id");
|
||||
|
||||
//print "<br /> <br /> <br /> <br />";
|
||||
//foreach ($r as $rr) {
|
||||
//print '<a href="editwebpage/' . ($rr['iid']) .'">Edit</a>' . ' ' . ($rr['sid']) . '<br />';
|
||||
//}
|
||||
|
||||
$pages = null;
|
||||
|
||||
if($r) {
|
||||
$pages = array();
|
||||
foreach($r as $rr) {
|
||||
$pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid']);
|
||||
}
|
||||
}
|
||||
|
||||
logger('mod_profile: things: ' . print_r($pages,true), LOGGER_DATA);
|
||||
|
||||
return replace_macros(get_markup_template("webpageslist.tpl"), array(
|
||||
'$webpages' => $webpages
|
||||
));
|
||||
}
|
||||
|
||||
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user