structure.inc.php
1.09 KB
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
<?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-2007 by Jared White & J. Max Wilson
@copyright Copyright (c) 2008-2009 by Joseph Woolley, Steffen Konerow, 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';
}
}