Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
47 lines
968 B
PHP
47 lines
968 B
PHP
<?php
|
|
/*
|
|
File: structure.inc.php
|
|
|
|
HTML Control Library - Structure Tags
|
|
|
|
Title: xajax HTML control class library
|
|
|
|
Please see <copyright.inc.php> for a detailed description, copyright
|
|
and license information.
|
|
*/
|
|
|
|
/*
|
|
@package xajax
|
|
@version $Id: structure.inc.php 362 2007-05-29 15:32:24Z calltoconstruct $
|
|
@copyright Copyright (c) 2005-2006 by Jared White & J. Max Wilson
|
|
@license http://www.xajaxproject.org/bsd_license.txt BSD License
|
|
*/
|
|
|
|
/*
|
|
Section: Description
|
|
|
|
This file contains the class declarations for the following HTML Controls:
|
|
|
|
- div, span
|
|
*/
|
|
|
|
class clsDiv extends xajaxControlContainer
|
|
{
|
|
function clsDiv($aConfiguration=array())
|
|
{
|
|
xajaxControlContainer::xajaxControlContainer('div', $aConfiguration);
|
|
|
|
$this->sClass = '%block';
|
|
}
|
|
}
|
|
|
|
class clsSpan extends xajaxControlContainer
|
|
{
|
|
function clsSpan($aConfiguration=array())
|
|
{
|
|
xajaxControlContainer::xajaxControlContainer('span', $aConfiguration);
|
|
|
|
$this->sClass = '%inline';
|
|
}
|
|
}
|