move backgroundtext element class to html folder

This commit is contained in:
Christian Weiske 2010-05-07 07:39:30 +02:00
parent df1701253b
commit 4d874f7528
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ require_once 'HTML/QuickForm2/Element/InputText.php';
* @license http://opensource.org/licenses/bsd-license.php New BSD License
* @link http://pear.php.net/package/HTML_QuickForm2
*/
class SemanticScuttle_QuickForm2_Element_BackgroundText
class HTML_QuickForm2_Element_BackgroundText
extends HTML_QuickForm2_Element_InputText
{
/**

View File

@ -29,12 +29,12 @@ if (!$GLOBALS['enableRegistration']) {
require_once 'HTML/QuickForm2.php';
require_once 'HTML/QuickForm2/Renderer.php';
require_once 'SemanticScuttle/QuickForm2/Element/BackgroundText.php';
require_once 'HTML/QuickForm2/Element/BackgroundText.php';
require_once 'SemanticScuttle/QuickForm2/Rule/ICallback.php';
HTML_QuickForm2_Factory::registerElement(
'backgroundtext',
'SemanticScuttle_QuickForm2_Element_BackgroundText'
'HTML_QuickForm2_Element_BackgroundText'
);
HTML_QuickForm2_Factory::registerRule(
'icallback',