├── files ├── files │ ├── thumbnails │ │ └── .gitignore │ └── .htaccess ├── style │ ├── presetClasses.scss │ └── grid.scss ├── index.php ├── acp │ ├── index.php │ ├── global.php │ └── install_de.codequake.cms.php ├── global.php └── lib │ ├── data │ ├── page │ │ ├── SearchResultPageList.class.php │ │ ├── PageList.class.php │ │ ├── ViewablePage.class.php │ │ ├── revision │ │ │ ├── PageRevisionList.class.php │ │ │ ├── PageRevisionEditor.class.php │ │ │ └── PageRevision.class.php │ │ ├── ViewablePageNodeTree.class.php │ │ ├── AccessiblePageNodeTree.class.php │ │ ├── DrainedPageNodeTree.class.php │ │ └── SearchResultPage.class.php │ ├── content │ │ ├── ViewableContentList.class.php │ │ ├── ViewableContent.class.php │ │ ├── DrainedContentNodeTree.class.php │ │ ├── ContentList.class.php │ │ ├── DrainedPositionContentNodeTree.class.php │ │ ├── BoxContentNodeTree.class.php │ │ ├── ContentEditor.class.php │ │ └── ContentCache.class.php │ ├── file │ │ ├── FileList.class.php │ │ ├── CategoryFileList.class.php │ │ └── FileCache.class.php │ └── stylesheet │ │ ├── StylesheetList.class.php │ │ ├── StylesheetAction.class.php │ │ ├── StylesheetCache.class.php │ │ └── StylesheetEditor.class.php │ ├── page │ ├── ICMSPage.class.php │ ├── SitemapPage.class.php │ ├── LinkPage.class.php │ └── PagePage.class.php │ ├── system │ ├── CMSCore.class.php │ ├── stat │ │ ├── PageCommentStatDailyHandler.class.php │ │ └── PageStatDailyHandler.class.php │ ├── importer │ │ ├── PageCommentResponseImporter.class.php │ │ ├── FileCategoryImporter.class.php │ │ ├── PageCommentImporter.class.php │ │ ├── StylesheetImporter.class.php │ │ ├── FileImporter.class.php │ │ └── ContentImporter.class.php │ ├── content │ │ └── type │ │ │ ├── ISearchableContentType.class.php │ │ │ ├── LinkContentType.class.php │ │ │ ├── HeadlineContentType.class.php │ │ │ ├── GroupContentType.class.php │ │ │ ├── SlideshowContentType.class.php │ │ │ ├── AbstractStructureContentType.class.php │ │ │ ├── GoogleMapsContentType.class.php │ │ │ ├── PollContentType.class.php │ │ │ ├── YoutubeContentType.class.php │ │ │ ├── TabMenuContentType.class.php │ │ │ ├── ContentContentType.class.php │ │ │ ├── MenuContentType.class.php │ │ │ ├── PHPContentType.class.php │ │ │ ├── ImageContentType.class.php │ │ │ ├── graph │ │ │ └── PieChartContentType.class.php │ │ │ ├── FileContentType.class.php │ │ │ ├── AbstractSearchableContentType.class.php │ │ │ ├── AbstractDatabaseObjectListContentType.class.php │ │ │ ├── IContentType.class.php │ │ │ └── ColumnsContentType.class.php │ ├── template │ │ └── EnvironmentTemplateEngine.class.php │ ├── cache │ │ └── builder │ │ │ ├── StylesheetCacheBuilder.class.php │ │ │ ├── FileCacheBuilder.class.php │ │ │ ├── ContentCacheBuilder.class.php │ │ │ ├── FilePermissionCacheBuilder.class.php │ │ │ ├── PagePermissionCacheBuilder.class.php │ │ │ ├── ContentPermissionCacheBuilder.class.php │ │ │ └── PageCacheBuilder.class.php │ ├── sitemap │ │ └── object │ │ │ └── PageSitemapObject.class.php │ ├── bbcode │ │ ├── CMSFileUrlBBCode.class.php │ │ ├── PageBBCode.class.php │ │ └── CMSFileBBCode.class.php │ ├── user │ │ ├── notification │ │ │ └── object │ │ │ │ └── type │ │ │ │ ├── PageCommentUserNotificationObjectType.class.php │ │ │ │ └── PageCommentResponseUserNotificationObjectType.class.php │ │ ├── object │ │ │ └── watch │ │ │ │ └── PageUserObjectWatch.class.php │ │ └── activity │ │ │ └── event │ │ │ └── PageCommentUserActivityEvent.class.php │ ├── worker │ │ └── FileRebuildDataWorker.class.php │ ├── category │ │ └── FileCategoryType.class.php │ ├── page │ │ ├── handler │ │ │ └── TPageOnlineLocationPageHandler.class.php │ │ ├── type │ │ │ └── PagePageType.class.php │ │ └── PagePermissionHandler.class.php │ ├── poll │ │ └── ContentPollHandler.class.php │ ├── event │ │ └── listener │ │ │ ├── UserRenameListener.class.php │ │ │ ├── WSIPImportContentTypeListener.class.php │ │ │ ├── CommentActionListener.class.php │ │ │ └── DailyCleanUpListener.class.php │ ├── option │ │ ├── CMSPageSelectOptionType.class.php │ │ └── CMSPageMultiSelectOptionType.class.php │ ├── cronjob │ │ └── PublicationCronjob.class.php │ ├── search │ │ ├── acp │ │ │ └── PageACPSearchResultProvider.class.php │ │ └── PageSearch.class.php │ └── clipboard │ │ └── action │ │ ├── FileClipboardAction.class.php │ │ └── StylesheetClipboardAction.class.php │ ├── acp │ ├── page │ │ ├── FileCategoryListPage.class.php │ │ ├── StylesheetListPage.class.php │ │ └── PageListPage.class.php │ ├── form │ │ ├── FileCategoryEditForm.class.php │ │ └── FileCategoryAddForm.class.php │ └── action │ │ └── CMSExportAction.class.php │ └── util │ └── BrowserUtil.class.php ├── templates ├── __copyright.tpl ├── inlineEditor_groupContentType.tpl ├── inlineEditor_tabMenuContentType.tpl ├── inlineEditor_slideshowContentType.tpl ├── linkContentType.tpl ├── slideshowContentType.tpl ├── fileContentType.tpl ├── tabMenuContentType.tpl ├── headlineContentType.tpl ├── googleMapsContentType.tpl ├── galleryContentType.tpl ├── menuContentType.tpl ├── __pageAddButton.tpl ├── imageContentType.tpl ├── inlineEditor_boxContentType.tpl ├── inlineEditor_phpContentType.tpl ├── inlineEditor_columnsContentType.tpl ├── cmsFileBBCodeTag.tpl ├── inlineEditor_userContentType.tpl ├── inlineEditor_youtubeContentType.tpl ├── inlineEditor_rssContentType.tpl ├── sitemap.tpl ├── inlineEditor_contentContentType.tpl ├── inlineEditor_templateContentType.tpl ├── inlineEditor_fileContentType.tpl ├── rssContentType.tpl ├── inlineEditor_textContentType.tpl ├── inlineEditor_galleryContentType.tpl ├── contentAddDialog.tpl ├── contentNodeList.tpl ├── inlineEditor_googleMapsContentType.tpl ├── pieChartContentType.tpl ├── inlineEditor_linkContentType.tpl ├── userContentType.tpl ├── inlineEditor_databaseObjectListContentType.tpl ├── inlineEditor_menuContentType.tpl ├── contentTypeList.tpl └── inlineEditor_headlineContentType.tpl ├── acptemplates ├── groupContentType.tpl ├── tabMenuContentType.tpl ├── slideshowContentType.tpl ├── __cmsVersion.tpl ├── __pageMenuInfo.tpl ├── pageMultiSelectOptionType.tpl ├── pageSelectOptionType.tpl ├── filePreview.tpl ├── __menuItemAddJavascript.tpl ├── boxContentType.tpl ├── phpContentType.tpl ├── pagePageType.tpl ├── columnsContentType.tpl ├── contentTypeList.tpl ├── userContentType.tpl ├── youtubeContentType.tpl ├── rssContentType.tpl ├── contentContentType.tpl ├── templateContentType.tpl ├── fileUploadDialog.tpl ├── fileContentType.tpl ├── fileListDialog.tpl ├── textContentType.tpl ├── wsipImportContentType.tpl ├── categoryFileListDialog.tpl ├── googleMapsContentType.tpl ├── galleryContentType.tpl ├── linkContentType.tpl ├── databaseObjectListContentType.tpl ├── menuContentType.tpl ├── pageRevisionList.tpl ├── headlineContentType.tpl └── import.tpl ├── .phpcs.xml ├── .github ├── javascript-syntax.json ├── php-syntax.json └── workflows │ ├── codestyle.yml │ ├── php.yml │ ├── javascript.yml │ └── templates.yml ├── files_wcf ├── style │ └── ui │ │ └── fireball.scss └── lib │ └── system │ └── event │ └── listener │ └── FireballRouteListener.class.php ├── xml ├── acpSearchProvider.xml ├── menuItem.xml ├── objectTypeDefinition.xml ├── page.xml ├── cronjob.xml ├── userNotificationEvent.xml └── bbcode.xml ├── constants.php └── README.md /files/files/thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /files/files/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /templates/__copyright.tpl: -------------------------------------------------------------------------------- 1 | {if $__cms->isActiveApplication()}
{lang}cms.acp.content.type.de.codequake.cms.content.type.group.description{/lang}
2 | -------------------------------------------------------------------------------- /acptemplates/tabMenuContentType.tpl: -------------------------------------------------------------------------------- 1 |{lang}cms.acp.content.type.de.codequake.cms.content.type.tabmenu.description{/lang}
2 | -------------------------------------------------------------------------------- /acptemplates/slideshowContentType.tpl: -------------------------------------------------------------------------------- 1 |{lang}cms.acp.content.type.de.codequake.cms.content.type.slideshow.description{/lang}
2 | -------------------------------------------------------------------------------- /templates/inlineEditor_groupContentType.tpl: -------------------------------------------------------------------------------- 1 |{lang}cms.acp.content.type.de.codequake.cms.content.type.group.description{/lang}
2 | -------------------------------------------------------------------------------- /templates/inlineEditor_tabMenuContentType.tpl: -------------------------------------------------------------------------------- 1 |{lang}cms.acp.content.type.de.codequake.cms.content.type.tabmenu.description{/lang}
2 | -------------------------------------------------------------------------------- /templates/inlineEditor_slideshowContentType.tpl: -------------------------------------------------------------------------------- 1 |{lang}cms.acp.content.type.de.codequake.cms.content.type.slideshow.description{/lang}
2 | -------------------------------------------------------------------------------- /acptemplates/__cmsVersion.tpl: -------------------------------------------------------------------------------- 1 |6 | {$file->filesize|filesize} 7 |
8 |{@$file->getIconTag(96)}
7 | {/if} 8 || 9 | | {lang}wcf.global.objectID{/lang} | 10 |{lang}wcf.global.title{/lang} | 11 |{lang}cms.acp.file.fileType{/lang} | 12 |{lang}cms.acp.file.downloads{/lang} | 13 | 14 | {event name='columnHeads'} 15 | 16 | 17 | 18 | {foreach from=$fileList item=file} 19 ||
|---|---|---|---|---|---|
| 21 | | {@$file->fileID} | 22 |{@$file->getIconTag()} | 23 |{$file->getTitle()} | 24 |{$file->fileType} | 25 |{#$file->downloads} | 26 | 27 | {event name='columnRows'} 28 |
{$user->getUserTitle()}
34 || {lang}wcf.global.objectID{/lang} | 13 |{lang}cms.acp.page.revision.action{/lang} | 14 |{lang}wcf.user.username{/lang} | 15 |{lang}cms.acp.page.revision.time{/lang} | 16 | 17 | {event name='columnHeads'} 18 ||
|---|---|---|---|---|
| 24 | 25 | 26 | 27 | {event name='rowButtons'} 28 | | 29 |{@$revision->revisionID} | 30 |{lang}cms.acp.page.revision.action.{$revision->action}{/lang} | 31 |{@$revision->username} | 32 |{@$revision->time|time} | 33 | 34 | {event name='columns'} 35 |
{lang}wcf.global.noItems{/lang}
42 | {/if} 43 | -------------------------------------------------------------------------------- /templates/contentTypeList.tpl: -------------------------------------------------------------------------------- 1 |{lang}wcf.global.success{/lang}
11 | {/if} 12 | 13 |{lang}cms.acp.page.import.info{/lang}
14 | 15 | 50 | 51 |