1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
/**
* Copyright 2002-2014 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @category Horde
* @copyright 2002-2014 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package Passwd
*/
if (!defined('PASSWD_BASE')) {
define('PASSWD_BASE', __DIR__. '/..');
}
if (!defined('HORDE_BASE')) {
/* If horde does not live directly under the app directory, the HORDE_BASE
* constant should be defined in config/horde.local.php. */
if (file_exists(PASSWD_BASE. '/config/horde.local.php')) {
include PASSWD_BASE . '/config/horde.local.php';
} else {
define('HORDE_BASE', PASSWD_BASE . '/..');
}
}
/* Load the Horde Framework core (needed to autoload
* Horde_Registry_Application::). */
require_once HORDE_BASE . '/lib/core.php';
/**
* Passwd application API.
*
* This file defines Horde's core API interface. Other core Horde libraries
* can interact with IMP through this API.
*
* @author Eric Rostetter <eric.rostetter@physics.utexas.edu>
* @author Ben Klang <ben@alkaloid.net>
* @category Horde
* @copyright 2002-2014 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package Passwd
*/
class Passwd_Application extends Horde_Registry_Application
{
/**
* The version of passwd as shown in the admin view
*/
public $version = 'H5 (5.0.2)';
}
|