source of /viewer/constants.php
Constants used by the viewer <?php /* Copyright 2008 Josh Heidenreich This file is part of Pelzini. Pelzini is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Pelzini is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Pelzini. If not, see <http://www.gnu.org/licenses/>. */ /** * Constants used by the viewer * * @package Viewer * @author Josh Heidenreich * @since 0.1 **/ /** * The current version of pelzini **/ define('PELZINI_VERSION', '0.9.0'); // The link types // These are used when linking from tables such as Authors // which can potentinally link to multiple tables // NOTE: These link types must match the ones defined in processor/constants.php define('LINK_TYPE_INTERFACE', 3); define('LINK_TYPE_CONSTANT', 4); define('LINK_TYPE_FUNCTION', 5); define('LINK_TYPE_VARIABLE', 6); define('LINK_TYPE_ENUMERATION', 7); ?>
|