@hubdomain also for auto-create-channel + adding css wrapper (ongoing work)

This commit is contained in:
jeroenpraat
2016-02-16 21:46:24 +01:00
parent 364972a292
commit f738902107
4 changed files with 7 additions and 2 deletions

View File

@@ -26,6 +26,7 @@ function pdledit_content(&$a) {
if(argc() > 1)
$module = 'mod_' . argv(1) . '.pdl';
else {
$o .= '<div class="generic-content-wrapper-styled">';
$o .= '<h1>' . t('Edit System Page Description') . '</h1>';
$files = glob('mod/*');
if($files) {
@@ -38,6 +39,8 @@ function pdledit_content(&$a) {
}
}
$o .= '</div>';
// list module pdl files
return $o;
}