This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/mod/webpages.php
2013-07-10 19:46:06 +01:00

30 lines
623 B
PHP

<?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>' . '&nbsp' . ($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;
}