Class DBMS_FIELD_HTMLSOURCE

Description

Class DBMS_FIELD_HTMLSOURCE

Located in /db/frmClasses/DBMS_FIELD_HTMLSOURCE.phpclass (line 31)

DBMS_FIELD
   |
   --DBMS_FIELD_TEXTAREA
      |
      --DBMS_FIELD_HTMLSOURCE
Class Constant Summary
 CLASS_SRC_FILE = __FILE__
Variable Summary
 boolean $allowHTML
 string $classSrcFile
 boolean $isSearchable
Method Summary
 array editTbl_getFieldEditArr ([boolean $debug = False])
 string getInputTag (string $aValue, [string $arrName = "DBVAL"])
 string getValue (string $aValue,  &$err, [string $arrName = "DBVAL"], [ $debug = False], array $err)
 void save ()
 string slashedValue (string $aValue,  &$err, [string $arrName = "DBVAL"], [ $debug = False], array $err)
Variables
boolean $allowHTML = True (line 70)

overwrite parent::$allowHTML to True

  • access: protected

Redefinition of:
DBMS_FIELD_TEXTAREA::$allowHTML
string $classSrcFile = __FILE__ (line 79)

source file of the class

  • since: pk-05-02-19

Redefinition of:
DBMS_FIELD_TEXTAREA::$classSrcFile
source file of the class
boolean $isSearchable = False (line 63)

overwrite parent::$isSearchable to False

  • access: protected

Redefinition of:
DBMS_FIELD_TEXTAREA::$isSearchable

Inherited Variables

Inherited from DBMS_FIELD_TEXTAREA

DBMS_FIELD_TEXTAREA::$className
DBMS_FIELD_TEXTAREA::$cols
DBMS_FIELD_TEXTAREA::$extJSxType
DBMS_FIELD_TEXTAREA::$lstTAreaCols
DBMS_FIELD_TEXTAREA::$lstTAreaRows
DBMS_FIELD_TEXTAREA::$myHTMLOutMode
DBMS_FIELD_TEXTAREA::$myLstOutMode
DBMS_FIELD_TEXTAREA::$myLstOutSize
DBMS_FIELD_TEXTAREA::$myROShowMode
DBMS_FIELD_TEXTAREA::$nlToBr
DBMS_FIELD_TEXTAREA::$rows
DBMS_FIELD_TEXTAREA::$srcVersion
DBMS_FIELD_TEXTAREA::$static_Showmodes
DBMS_FIELD_TEXTAREA::$static_wrapMode
DBMS_FIELD_TEXTAREA::$wrap

Inherited from DBMS_FIELD

DBMS_FIELD::$addTag
DBMS_FIELD::$ajaxDebug
DBMS_FIELD::$ajaxNotifyLst
DBMS_FIELD::$allowNull
DBMS_FIELD::$dbDesc
DBMS_FIELD::$defaultValue
DBMS_FIELD::$enableCopy
DBMS_FIELD::$enableEdit
DBMS_FIELD::$enableEditIfEmpty
DBMS_FIELD::$enableNew
DBMS_FIELD::$errMsg
DBMS_FIELD::$exportCSV
DBMS_FIELD::$extConfOptions
DBMS_FIELD::$fieldtd_add
DBMS_FIELD::$fldDbgGetValue
DBMS_FIELD::$fldDebug
DBMS_FIELD::$hideAddTag_ro
DBMS_FIELD::$hideCopy
DBMS_FIELD::$hideEdit
DBMS_FIELD::$hideNew
DBMS_FIELD::$hideReadOnly
DBMS_FIELD::$inputAdd
DBMS_FIELD::$isHidden
DBMS_FIELD::$js_check
DBMS_FIELD::$label
DBMS_FIELD::$labelcol_hide
DBMS_FIELD::$labeltd_add
DBMS_FIELD::$lstColSpan
DBMS_FIELD::$lstDisableLinks
DBMS_FIELD::$lstLabel
DBMS_FIELD::$lstLink
DBMS_FIELD::$lstTDAdd
DBMS_FIELD::$lstWidth
DBMS_FIELD::$maxlength
DBMS_FIELD::$myAjaxObj
DBMS_FIELD::$myBlock
DBMS_FIELD::$myBlockId
DBMS_FIELD::$myControll
DBMS_FIELD::$myCurrentMode
DBMS_FIELD::$myDataArrName
DBMS_FIELD::$myDeleteFlag
DBMS_FIELD::$myDesc
DBMS_FIELD::$myDOMId
DBMS_FIELD::$myForm
DBMS_FIELD::$myFrmId
DBMS_FIELD::$myGrpKey
DBMS_FIELD::$myHelpUrl
DBMS_FIELD::$myModuleKey
DBMS_FIELD::$myName
DBMS_FIELD::$myTable
DBMS_FIELD::$myTableAlias
DBMS_FIELD::$myView
DBMS_FIELD::$nullErrMsg
DBMS_FIELD::$ps_defaultDataArrName
DBMS_FIELD::$regexcheck_pattern
DBMS_FIELD::$regexErrMsg
DBMS_FIELD::$searchGroup_allowAll
DBMS_FIELD::$showGroup
DBMS_FIELD::$showInList
DBMS_FIELD::$showQasHidden
DBMS_FIELD::$showQuery
DBMS_FIELD::$size
DBMS_FIELD::$sortOrder
DBMS_FIELD::$tabIndex
DBMS_FIELD::$toolTip
DBMS_FIELD::$toolTipAsTitle
DBMS_FIELD::$trimValue
Methods
editTbl_getFieldEditArr (line 103)

returns an array of field to bie shown in the edit form by using editTbl_echoForm

the array is in the form:

  1.  [_sectionName_]
  2.       [TITLE-> string
  3.       [_rowName_]
  4.          [FLDLAB]  (complete html code with <td></td>)
  5.          [FLDVAL(complete html code with <td></td>)

  • version: pk-06-04-29
  • since: pk-06-04-26
array editTbl_getFieldEditArr ([boolean $debug = False])
  • boolean $debug

Redefinition of:
DBMS_FIELD_TEXTAREA::editTbl_getFieldEditArr()
returns an array of field to bie shown in the edit form by using editTbl_echoForm
getInputTag (line 138)

returns a string with the HTML input-tag for the field

  • version: pk-03-11-27 layout changed
string getInputTag (string $aValue, [string $arrName = "DBVAL"])
  • string $aValue: the value to show
  • string $arrName: name of the form array used in name=

Redefinition of:
DBMS_FIELD_TEXTAREA::getInputTag()
returns the html code for a editable formular element
getValue (line 186)

returns the value with slashes create use in a db statement do some textreplaces before - because the editors always adds the url - to avoid jumping into a test system

calls parent::slashedValue()

  • version: pk-03-11-27 DB-Object used instead of DB_.. function
string getValue (string $aValue,  &$err, [string $arrName = "DBVAL"], [ $debug = False], array $err)
  • string $aValue: the value
  • array $err: error array
  • string $arrName: DBVAL
  • &$err
  • $debug
save (line 120)

saves the field definition from $_POST array

void save ()

Redefinition of:
DBMS_FIELD_TEXTAREA::save()
saves the field definition from $_POST array
slashedValue (line 210)

returns the value with slashes create use in a db statement do some textreplaces before - because the editors always adds the url - to avoid jumping into a test system

calls parent::slashedValue()

  • version: pk-03-11-27 DB-Object used instead of DB_.. function
string slashedValue (string $aValue,  &$err, [string $arrName = "DBVAL"], [ $debug = False], array $err)
  • string $aValue: the value
  • array $err: error array
  • string $arrName: DBVAL
  • &$err
  • $debug

Inherited Methods

Inherited From DBMS_FIELD_TEXTAREA

 DBMS_FIELD_TEXTAREA::editTblForm()
 DBMS_FIELD_TEXTAREA::editTbl_getFieldEditArr()
 DBMS_FIELD_TEXTAREA::getExtJSConfigOptions()
 DBMS_FIELD_TEXTAREA::getHtmlTag()
 DBMS_FIELD_TEXTAREA::getInputTag()
 DBMS_FIELD_TEXTAREA::getListValue()
 DBMS_FIELD_TEXTAREA::getScreenValue()
 DBMS_FIELD_TEXTAREA::save()

Inherited From DBMS_FIELD

 DBMS_FIELD::DBMS_FIELD()
 DBMS_FIELD::allowNull()
 DBMS_FIELD::check()
 DBMS_FIELD::editLst_getAdminLstStyle()
 DBMS_FIELD::editLst_getClassSelectOptions()
 DBMS_FIELD::editTblForm()
 DBMS_FIELD::editTbl_echoForm()
 DBMS_FIELD::editTbl_getForm()
 DBMS_FIELD::fldTypeIsUseable()
 DBMS_FIELD::getAddTag()
 DBMS_FIELD::getBlockId()
 DBMS_FIELD::getDataArrName()
 DBMS_FIELD::getDBColName()
 DBMS_FIELD::getDBColType()
 DBMS_FIELD::getDbDefault()
 DBMS_FIELD::getdbDesc()
 DBMS_FIELD::getDebugMode()
 DBMS_FIELD::getDefaultValue()
 DBMS_FIELD::getFieldRow()
 DBMS_FIELD::getFieldRowCols()
 DBMS_FIELD::getFieldTag()
 DBMS_FIELD::getFrmId()
 DBMS_FIELD::getInputTag()
 DBMS_FIELD::getKey()
 DBMS_FIELD::getLabel()
 DBMS_FIELD::getLabelColTag()
 DBMS_FIELD::getListLink()
 DBMS_FIELD::getListLinkArr()
 DBMS_FIELD::getListValue()
 DBMS_FIELD::getLstColSpan()
 DBMS_FIELD::getLstLabel()
 DBMS_FIELD::getLstWidth()
 DBMS_FIELD::getModuleKey()
 DBMS_FIELD::getMyBlock()
 DBMS_FIELD::getMyForm()
 DBMS_FIELD::getMyFormName()
 DBMS_FIELD::getName()
 DBMS_FIELD::getObjectData()
 DBMS_FIELD::getObjectVars()
 DBMS_FIELD::getOrderNr()
 DBMS_FIELD::getScreenValue()
 DBMS_FIELD::getSetting()
 DBMS_FIELD::getShowGroup()
 DBMS_FIELD::getSize()
 DBMS_FIELD::getSourceFile()
 DBMS_FIELD::getTabIndex()
 DBMS_FIELD::getTable()
 DBMS_FIELD::getTblAlias()
 DBMS_FIELD::getToolTip()
 DBMS_FIELD::getType()
 DBMS_FIELD::getValId()
 DBMS_FIELD::get_lstTDAdd()
 DBMS_FIELD::incOrderNr()
 DBMS_FIELD::isAutoInc()
 DBMS_FIELD::isEnabled()
 DBMS_FIELD::isHidden()
 DBMS_FIELD::isLayoutFld()
 DBMS_FIELD::isMarkedDeleted()
 DBMS_FIELD::isPrimaryKey()
 DBMS_FIELD::isReadOnlyShown()
 DBMS_FIELD::isSearchable()
 DBMS_FIELD::isToShow()
 DBMS_FIELD::labelIsHidden()
 DBMS_FIELD::lstLinksDisabled()
 DBMS_FIELD::markDeleted()
 DBMS_FIELD::markUnDeleted()
 DBMS_FIELD::save()
 DBMS_FIELD::setDataArrName()
 DBMS_FIELD::setdbDesc()
 DBMS_FIELD::setFieldVar()
 DBMS_FIELD::setFrmId()
 DBMS_FIELD::setHidden()
 DBMS_FIELD::setLabel()
 DBMS_FIELD::setModuleKey()
 DBMS_FIELD::setMyBlock()
 DBMS_FIELD::setMyForm()
 DBMS_FIELD::setName()
 DBMS_FIELD::setObjectVars()
 DBMS_FIELD::setObjVarsFrom()
 DBMS_FIELD::setOrderNr()
 DBMS_FIELD::setShown()
 DBMS_FIELD::setTable()
 DBMS_FIELD::setTblAlias()
 DBMS_FIELD::showInList()
Class Constants
CLASS_SRC_FILE = __FILE__ (line 40)

Inherited Constants

Inherited from DBMS_FIELD_TEXTAREA

DBMS_FIELD_TEXTAREA::CLASS_SRC_FILE

Documentation generated on Thu, 08 Jan 2009 17:41:53 +0100 by phpDocumentor 1.4.0a2