Changeset 3731:3770620079d4 for inc/core
- Timestamp:
- 03/09/18 12:29:57 (8 years ago)
- Branch:
- default
- Location:
- inc/core
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.auth.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------------3 #4 # This file is part of Dotclear 2.5 #6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear7 # Licensed under the GPL version 2.0 license.8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html10 #11 # -- END LICENSE BLOCK -----------------------------------------12 if (!defined('DC_RC_PATH')) {return;}13 14 2 /** 15 * @ingroup DC_CORE16 * @nosubgrouping17 3 * @brief Authentication and user credentials management 18 4 * 19 5 * dcAuth is a class used to handle everything related to user authentication 20 6 * and credentials. Object is provided by dcCore $auth property. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 21 13 */ 14 15 if (!defined('DC_RC_PATH')) {return;} 16 22 17 class dcAuth 23 18 { -
inc/core/class.dc.blog.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @package Dotclear 4 * @subpackage Core 5 * 6 * @copyright Olivier Meunier & Association Dotclear 7 * @copyright GPL-2.0-only 8 * 9 * @brief Dotclear blog class. 10 * 11 * Dotclear blog class instance is provided by dcCore $blog property. 12 */ 13 12 14 if (!defined('DC_RC_PATH')) {return;} 13 15 14 /**15 @ingroup DC_CORE16 @nosubgrouping17 @brief Dotclear blog class.18 19 Dotclear blog class instance is provided by dcCore $blog property.20 */21 16 class dcBlog 22 17 { -
inc/core/class.dc.categories.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * nestedTree class is based on excellent work of Kuzma Feskov 4 * (http://php.russofile.ru/ru/authors/sql/nestedsets01/) 5 * 6 * One day we'll move nestedTree to Clearbricks. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 13 * 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 14 # nestedTree class is based on excellent work of Kuzma Feskov15 # (http://php.russofile.ru/ru/authors/sql/nestedsets01/)16 #17 # One day we'll move nestedTree to Clearbricks.18 17 19 18 class dcCategories extends nestedTree -
inc/core/class.dc.core.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------------3 #4 # This file is part of Dotclear 2.5 #6 # Copyright (c) 2003-2015 Olivier Meunier & Association Dotclear7 # Licensed under the GPL version 2.0 license.8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html10 #11 # -- END LICENSE BLOCK -----------------------------------------12 13 2 /** 14 @defgroup DC_CORE Dotclear Core Classes 3 * @brief Dotclear core class 4 * 5 * True to its name dcCore is the core of Dotclear. It handles everything related 6 * to blogs, database connection, plugins... 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 15 13 */ 16 14 17 /**18 @ingroup DC_CORE19 @nosubgrouping20 @brief Dotclear core class21 22 True to its name dcCore is the core of Dotclear. It handles everything related23 to blogs, database connection, plugins...24 */25 15 class dcCore 26 16 { -
inc/core/class.dc.error.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------------3 #4 # This file is part of Dotclear 2.5 #6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear7 # Licensed under the GPL version 2.0 license.8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html10 #11 # -- END LICENSE BLOCK -----------------------------------------12 if (!defined('DC_RC_PATH')) {return;}13 14 2 /** 15 * @ingroup DC_CORE16 3 * @brief Error class 17 4 * … … 19 6 * add an error in stack. In administration area, errors are automatically 20 7 * displayed. 8 * 9 * @package Dotclear 10 * @subpackage Core 11 * 12 * @copyright Olivier Meunier & Association Dotclear 13 * @copyright GPL-2.0-only 21 14 */ 15 16 if (!defined('DC_RC_PATH')) {return;} 17 22 18 class dcError 23 19 { -
inc/core/class.dc.log.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @package Dotclear 4 * @subpackage Core 5 * 6 * @copyright Olivier Meunier & Association Dotclear 7 * @copyright GPL-2.0-only 8 */ 9 12 10 if (!defined('DC_RC_PATH')) {return;} 13 11 -
inc/core/class.dc.media.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Dotclear media manage 4 * 5 * This class handles Dotclear media items. 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 */ 13 12 14 if (!defined('DC_RC_PATH')) {return;} 13 15 14 /**15 @ingroup DC_CORE16 @brief Dotclear media manage17 18 This class handles Dotclear media items.19 */20 16 class dcMedia extends filemanager 21 17 { -
inc/core/class.dc.meta.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Dotclear metadata class. 4 * 5 * Dotclear metadata class instance is provided by dcCore $meta property. 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 */ 13 12 14 if (!defined('DC_RC_PATH')) {return;} 13 15 14 /**15 @ingroup DC_CORE16 @nosubgrouping17 @brief Dotclear metadata class.18 19 Dotclear metadata class instance is provided by dcCore $meta property.20 */21 16 class dcMeta 22 17 { -
inc/core/class.dc.modules.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Modules handler 4 * 5 * Provides an object to handle modules (themes or plugins). 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 */ 13 12 14 if (!defined('DC_RC_PATH')) {return;} 13 15 14 /**15 @ingroup DC_CORE16 @brief Modules handler17 18 Provides an object to handle modules (themes or plugins).19 */20 16 class dcModules 21 17 { -
inc/core/class.dc.namespace.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Blog namespace for settings handler 4 * 5 * @package Dotclear 6 * @subpackage Core 7 * 8 * @copyright Olivier Meunier & Association Dotclear 9 * @copyright GPL-2.0-only 10 */ 11 12 12 if (!defined('DC_RC_PATH')) {return;} 13 13 14 /**15 @ingroup DC_CORE16 @brief Blog namespace for settings handler17 18 */19 14 class dcNamespace 20 15 { -
inc/core/class.dc.plugins.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Plugins specific handler 4 * 5 * An instance of this class is provided by dcCore $plugins property 6 * and used for plugins. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 13 * 14 * @since 2.6 15 */ 16 12 17 if (!defined('DC_RC_PATH')) {return;} 13 18 14 19 /** 15 20 @ingroup DC_CORE 16 @brief Plugins specific handler17 @since 2.618 21 19 An instance of this class is provided by dcCore $plugins property20 and used for plugins.21 22 This class extends dcModules.23 22 */ 24 23 class dcPlugins extends dcModules -
inc/core/class.dc.postmedia.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @package Dotclear 4 * @subpackage Core 5 * 6 * @copyright Olivier Meunier & Association Dotclear 7 * @copyright GPL-2.0-only 8 */ 9 12 10 if (!defined('DC_RC_PATH')) {return;} 13 11 -
inc/core/class.dc.prefs.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief User prefs handler 4 * 5 * dcPrefs provides user preferences management. This class instance exists as 6 * dcAuth $prefs property. You should create a new prefs instance when 7 * updating another user prefs. 8 * 9 * @package Dotclear 10 * @subpackage Core 11 * 12 * @copyright Olivier Meunier & Association Dotclear 13 * @copyright GPL-2.0-only 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 17 14 /**15 @ingroup DC_CORE16 @brief User prefs handler17 18 dcPrefs provides user preferences management. This class instance exists as19 dcAuth $prefs property. You should create a new prefs instance when20 updating another user prefs.21 */22 18 class dcPrefs 23 19 { -
inc/core/class.dc.rest.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Dotclear REST server extension 4 * 5 * This class extends restServer to handle dcCore instance in each rest method call. 6 * Instance of this class is provided by dcCore $rest. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 13 */ 14 12 15 if (!defined('DC_RC_PATH')) {return;} 13 16 14 /**15 @ingroup DC_CORE16 @brief Dotclear REST server extension17 18 This class extends restServer to handle dcCore instance in each rest method call.19 Instance of this class is provided by dcCore $rest.20 */21 17 class dcRestServer extends restServer 22 18 { -
inc/core/class.dc.rs.extensions.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # This file is part of Dotclear 2. 4 # 5 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 6 # Licensed under the GPL version 2.0 license. 7 # See LICENSE file or 8 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 9 # 10 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Dotclear post record helpers 4 * 5 * This class adds new methods to database post results. 6 * You can call them on every record comming from dcBlog::getPosts and similar 7 * methods. 8 * 9 * @warning You should not give the first argument (usualy $rs) of every described function. 10 * 11 * @package Dotclear 12 * @subpackage Core 13 * 14 * @copyright Olivier Meunier & Association Dotclear 15 * @copyright GPL-2.0-only 16 */ 17 11 18 if (!defined('DC_RC_PATH')) {return;} 12 19 13 /**14 @ingroup DC_CORE15 @brief Dotclear post record helpers.16 17 This class adds new methods to database post results.18 You can call them on every record comming from dcBlog::getPosts and similar19 methods.20 21 @warning You should not give the first argument (usualy $rs) of every described22 function.23 */24 20 class rsExtPost 25 21 { -
inc/core/class.dc.settings.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Blog settings handler 4 * 5 * dcSettings provides blog settings management. This class instance exists as 6 * dcBlog $settings property. You should create a new settings instance when 7 * updating another blog settings. 8 * 9 * @package Dotclear 10 * @subpackage Core 11 * 12 * @copyright Olivier Meunier & Association Dotclear 13 * @copyright GPL-2.0-only 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 17 14 /**15 @ingroup DC_CORE16 @brief Blog settings handler17 18 dcSettings provides blog settings management. This class instance exists as19 dcBlog $settings property. You should create a new settings instance when20 updating another blog settings.21 */22 18 class dcSettings 23 19 { -
inc/core/class.dc.store.parser.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Repository modules XML feed parser 4 * 5 * Provides an object to parse XML feed of modules from a repository. 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 * 13 * @since 2.6 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 17 14 /**15 @ingroup DC_CORE16 @brief Repository modules XML feed parser17 @since 2.618 19 Provides an object to parse XML feed of modules from a repository.20 */21 18 class dcStoreParser 22 19 { -
inc/core/class.dc.store.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Repository modules XML feed reader 4 * 5 * Provides an object to parse XML feed of modules from repository. 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 * 13 * @since 2.6 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 17 14 /**15 @ingroup DC_CORE16 @brief Repository modules XML feed reader17 @since 2.618 19 Provides an object to parse XML feed of modules from repository.20 */21 18 class dcStore 22 19 { -
inc/core/class.dc.store.reader.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Repository modules XML feed reader 4 * 5 * Provides an object to parse XML feed of modules from repository. 6 * 7 * @package Dotclear 8 * @subpackage Core 9 * 10 * @copyright Olivier Meunier & Association Dotclear 11 * @copyright GPL-2.0-only 12 * 13 * @since 2.6 14 */ 15 12 16 if (!defined('DC_RC_PATH')) {return;} 13 17 14 /**15 @ingroup DC_CORE16 @brief Repository modules XML feed reader17 @since 2.618 19 Provides an object to parse XML feed of modules from repository.20 This class extends clearbricks netHttp class.21 */22 18 class dcStoreReader extends netHttp 23 19 { -
inc/core/class.dc.themes.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Themes specific handler 4 * 5 * Provides an specialized object to handle themes. An instance of this 6 * class should be created when needed. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 13 */ 14 12 15 if (!defined('DC_RC_PATH')) {return;} 13 16 14 /**15 @ingroup DC_CORE16 @brief Themes specific handler17 18 Provides an specialized object to handle themes. An instance of this19 class should be created when needed.20 21 This class extends dcModules.22 */23 17 class dcThemes extends dcModules 24 18 { -
inc/core/class.dc.trackback.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Trackbacks/Pingbacks sender and server 4 * 5 * Sends and receives trackbacks/pingbacks. 6 * Also handles trackbacks/pingbacks auto discovery. 7 * 8 * @package Dotclear 9 * @subpackage Core 10 * 11 * @copyright Olivier Meunier & Association Dotclear 12 * @copyright GPL-2.0-only 13 */ 14 12 15 if (!defined('DC_RC_PATH')) {return;} 13 16 14 /**15 @ingroup DC_CORE16 @brief Trackbacks/Pingbacks sender and server17 18 Sends and receives trackbacks/pingbacks. Also handles trackbacks/pingbacks auto discovery.19 */20 17 class dcTrackback 21 18 { -
inc/core/class.dc.update.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @package Dotclear 4 * @subpackage Core 5 * 6 * @copyright Olivier Meunier & Association Dotclear 7 * @copyright GPL-2.0-only 8 */ 9 12 10 if (!defined('DC_RC_PATH')) {return;} 13 11 -
inc/core/class.dc.utils.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief Dotclear helper methods 4 * 5 * @package Dotclear 6 * @subpackage Core 7 * 8 * @copyright Olivier Meunier & Association Dotclear 9 * @copyright GPL-2.0-only 10 */ 11 12 12 if (!defined('DC_RC_PATH')) {return;} 13 13 14 /**15 @ingroup DC_CORE16 @brief Dotclear helper methods17 18 Provides some Dotclear helpers19 */20 14 class dcUtils 21 15 { -
inc/core/class.dc.workspace.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @brief User workspace for preferences handler 4 * 5 * @package Dotclear 6 * @subpackage Core 7 * 8 * @copyright Olivier Meunier & Association Dotclear 9 * @copyright GPL-2.0-only 10 */ 11 12 12 if (!defined('DC_RC_PATH')) {return;} 13 13 14 /**15 @ingroup DC_CORE16 @brief User workspace for preferences handler17 18 */19 14 class dcWorkspace 20 15 { -
inc/core/class.dc.xmlrpc.php
r3730 r3731 1 1 <?php 2 # -- BEGIN LICENSE BLOCK --------------------------------------- 3 # 4 # This file is part of Dotclear 2. 5 # 6 # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear 7 # Licensed under the GPL version 2.0 license. 8 # See LICENSE file or 9 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 # 11 # -- END LICENSE BLOCK ----------------------------------------- 2 /** 3 * @package Dotclear 4 * @subpackage Core 5 * 6 * @copyright Olivier Meunier & Association Dotclear 7 * @copyright GPL-2.0-only 8 */ 9 12 10 if (!defined('DC_RC_PATH')) {return;} 13 11
Note: See TracChangeset
for help on using the changeset viewer.