clean up; git admin; add phpdoc config; fix setup bug

Dieser Commit ist enthalten in:
o.pinke 2020-07-07 13:14:29 +02:00
Ursprung d2ccd7c3a9
Commit 12f2b57951
8 geänderte Dateien mit 25 neuen und 27 gelöschten Zeilen

3
.gitignore vendored
Datei anzeigen

@ -2,4 +2,5 @@
/data/config/production/config.php /data/config/production/config.php
/_dev/ /_dev/
/conlite/plugins/pluginmanager/_src/ /conlite/plugins/pluginmanager/_src/
/.project /.project
/_api/

Datei anzeigen

@ -6,17 +6,13 @@
* Description: * Description:
* Base Class for all cHTML Elements * Base Class for all cHTML Elements
* *
* @package Core * @package ConLite\Core\cHTML5
* @subpackage cHTML
* @version $Rev$
* @since 2.0 * @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org> * @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright (c) 2012, conlite.org * @copyright (c) 2012, conlite.org
* @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version)
* @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version)
* @link http://www.conlite.org ConLite.org * @link http://www.conlite.org ConLite.org
*
* $Id$
*/ */
// security check // security check

Datei anzeigen

@ -6,17 +6,13 @@
* Description: * Description:
* cHTML Meta * cHTML Meta
* *
* @package Core * @package ConLite\Core\cHTML5
* @subpackage cHTML
* @version $Rev$
* @since 2.0 * @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org> * @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright (c) 2015, conlite.org * @copyright (c) 2015, conlite.org
* @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version)
* @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version)
* @link http://www.conlite.org ConLite.org * @link http://www.conlite.org ConLite.org
*
* $Id$
*/ */
// security check // security check

Datei anzeigen

@ -7,17 +7,13 @@
* Description: * Description:
* cHTML List Element * cHTML List Element
* *
* @package Core * @package ConLite\Core\cHTML5
* @subpackage cHTML
* @version $Rev$
* @since 2.0 * @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org> * @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright (c) 2015, conlite.org * @copyright (c) 2015, conlite.org
* @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version)
* @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version)
* @link http://www.conlite.org ConLite.org * @link http://www.conlite.org ConLite.org
*
* $Id$
*/ */
// security check // security check
defined('CON_FRAMEWORK') or die('Illegal call'); defined('CON_FRAMEWORK') or die('Illegal call');

Datei anzeigen

@ -6,17 +6,13 @@
* Description: * Description:
* cHTML List * cHTML List
* *
* @package Core * @package ConLite\Core\cHTML5
* @subpackage cHTML
* @version $Rev$
* @since 2.0 * @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org> * @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright (c) 2015, conlite.org * @copyright (c) 2015, conlite.org
* @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version)
* @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version)
* @link http://www.conlite.org ConLite.org * @link http://www.conlite.org ConLite.org
*
* $Id$
*/ */
// security check // security check

Datei anzeigen

@ -6,17 +6,13 @@
* Description: * Description:
* cHTML Meta * cHTML Meta
* *
* @package Core * @package ConLite\Core\cHTML5
* @subpackage cHTML
* @version $Rev$
* @since 2.0 * @since 2.0
* @author Ortwin Pinke <o.pinke@conlite.org> * @author Ortwin Pinke <o.pinke@conlite.org>
* @copyright (c) 2015, conlite.org * @copyright (c) 2015, conlite.org
* @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version)
* @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version)
* @link http://www.conlite.org ConLite.org * @link http://www.conlite.org ConLite.org
*
* $Id$
*/ */
// security check // security check

17
phpdoc.dist.xml Normale Datei
Datei anzeigen

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpdoc>
<title>API-Doc ConLite 2.1.1</title>
<parser>
<target>_api</target>
</parser>
<transformer>
<target>_api</target>
</transformer>
<files>
<directory>conlib</directory>
<directory>conlite</directory>
</files>
<transformations>
<template name="responsive-twig" />
</transformations>
</phpdoc>

Datei anzeigen

@ -291,8 +291,8 @@
"mod_translations";"original";"text";"NO";"";"";"";"" "mod_translations";"original";"text";"NO";"";"";"";""
"mod_translations";"translation";"text";"NO";"";"";"";"" "mod_translations";"translation";"text";"NO";"";"";"";""
"nav_main";"idnavm";"int(10)";"NO";"PRI";"0";"";"1" "nav_main";"idnavm";"int(10)";"NO";"PRI";"0";"";"1"
"nav_main";"location";"varchar(255)";"NO";"";"";"";""
"nav_main";"name";"varchar(255)";"NO";"";"";"";"" "nav_main";"name";"varchar(255)";"NO";"";"";"";""
"nav_main";"location";"varchar(255)";"NO";"";"";"";""
"nav_sub";"idnavs";"int(10)";"NO";"PRI";"0";"";"1" "nav_sub";"idnavs";"int(10)";"NO";"PRI";"0";"";"1"
"nav_sub";"idnavm";"int(10)";"NO";"";"0";"";"" "nav_sub";"idnavm";"int(10)";"NO";"";"0";"";""
"nav_sub";"idarea";"int(10)";"NO";"";"0";"";"" "nav_sub";"idarea";"int(10)";"NO";"";"0";"";""