本文整理汇总了PHP中AttributeValue::Load方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeValue::Load方法的具体用法?PHP AttributeValue::Load怎么用?PHP AttributeValue::Load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AttributeValue
的用法示例。
在下文中一共展示了AttributeValue::Load方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Create
/**
* Static Helper Method to Create using PK arguments
* You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
* If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
* static helper methods. Finally, specify a CreateType to define whether or not we are only allowed to
* edit, or if we are also allowed to create a new one, etc.
*
* @param mixed $objParentObject QForm or QPanel which will be using this AttributeValueMetaControl
* @param integer $intId primary key value
* @param QMetaControlCreateType $intCreateType rules governing AttributeValue object creation - defaults to CreateOrEdit
* @return AttributeValueMetaControl
*/
public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
{
// Attempt to Load from PK Arguments
if (strlen($intId)) {
$objAttributeValue = AttributeValue::Load($intId);
// AttributeValue was found -- return it!
if ($objAttributeValue) {
return new AttributeValueMetaControl($objParentObject, $objAttributeValue);
} else {
if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
throw new QCallerException('Could not find a AttributeValue object with PK arguments: ' . $intId);
}
}
// If EditOnly is specified, throw an exception
} else {
if ($intCreateType == QMetaControlCreateType::EditOnly) {
throw new QCallerException('No PK arguments specified');
}
}
// If we are here, then we need to create a new record
return new AttributeValueMetaControl($objParentObject, new AttributeValue());
}
示例2: lstAttributeValuesAsMultiple_Update
protected function lstAttributeValuesAsMultiple_Update()
{
if ($this->lstAttributeValuesAsMultiple) {
$this->objAttributeOption->UnassociateAllAttributeValuesAsMultiple();
$objSelectedListItems = $this->lstAttributeValuesAsMultiple->SelectedItems;
if ($objSelectedListItems) {
foreach ($objSelectedListItems as $objListItem) {
$this->objAttributeOption->AssociateAttributeValueAsMultiple(AttributeValue::Load($objListItem->Value));
}
}
}
}
示例3: Reload
/**
* Reload this AttributeValue from the database.
* @return void
*/
public function Reload()
{
// Make sure we are actually Restored from the database
if (!$this->__blnRestored) {
throw new QCallerException('Cannot call Reload() on a new, unsaved AttributeValue object.');
}
// Reload the Object
$objReloaded = AttributeValue::Load($this->intId);
// Update $this's local variables to match
$this->AttributeId = $objReloaded->AttributeId;
$this->PersonId = $objReloaded->PersonId;
$this->dttDateValue = $objReloaded->dttDateValue;
$this->dttDatetimeValue = $objReloaded->dttDatetimeValue;
$this->strTextValue = $objReloaded->strTextValue;
$this->blnBooleanValue = $objReloaded->blnBooleanValue;
$this->SingleAttributeOptionId = $objReloaded->SingleAttributeOptionId;
}