Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions _TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,7 @@ this file currently is not rating
*****************************
Open questions:
***************
Addfiles:
are the files class/Addfiles.php and Addfileshandler.php still needed?

search.php:
what should this file do, additionally to regular search?
UserSearch has to be adapted


single.php:
what should this file show?
what should it be used for?


visit.php:
what should this file show?
what should it be used for?



File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file removed admin/PUBLISHER_ROOT_PATH
Empty file.
144 changes: 0 additions & 144 deletions admin/addmymodule.php

This file was deleted.

142 changes: 0 additions & 142 deletions admin/moremymodule.php

This file was deleted.

20 changes: 0 additions & 20 deletions class/Files/CreateArchitecture.php
Original file line number Diff line number Diff line change
Expand Up @@ -609,26 +609,6 @@ public function setFilesToBuilding($module)
$userTemplatesRss->write($module, $moduleDirname . '_rss.tpl');
$ret[] = $userTemplatesRss->render();
}
// User Single File
if (in_array(1, $tableSingle)) {
$userSingle = Tdmcreate\Files\User\UserSingle::getInstance();
$userSingle->write($module, $table, 'single.php');
$ret[] = $userSingle->render();
// User Templates Single File
if ($templateType == 'bootstrap') {
$userTemplatesSingle = Tdmcreate\Files\Templates\User\Bootstrap\Single::getInstance();
} else {
$userTemplatesSingle = Tdmcreate\Files\Templates\User\Defstyle\Single::getInstance();
}
$userTemplatesSingle->write($module, $table, $moduleDirname . '_single.tpl');
$ret[] = $userTemplatesSingle->render();
}
// User Visit File
if (in_array(1, $tableVisit)) {
$userVisit = Tdmcreate\Files\User\UserVisit::getInstance();
$userVisit->write($module, $table, 'visit.php');
$ret[] = $userVisit->render();
}

// User Tag Files
if (in_array(1, $tableTag)) {
Expand Down
2 changes: 1 addition & 1 deletion class/Files/Templates/Admin/TemplatesAdminBroken.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private function getTemplatesAdminBrokenTable($moduleDirname, $tableName, $table
$hc = Tdmcreate\Files\CreateHtmlCode::getInstance();
$tbody = $this->getTemplatesAdminBrokenTableThead($language, "\t\t");
$tbody .= $this->getTemplatesAdminBrokenTableTBody($tableName, $tableSoleName, $language, "\t\t");
$ret .= $hc->getHtmlTable($tbody, 'table table-bordered', "\t");
$ret = $hc->getHtmlTable($tbody, 'table table-bordered', "\t");

return $ret;
}
Expand Down
Loading