当前位置: 首页>>代码示例>>PHP>>正文


PHP CustomField::Journal方法代码示例

本文整理汇总了PHP中CustomField::Journal方法的典型用法代码示例。如果您正苦于以下问题:PHP CustomField::Journal方法的具体用法?PHP CustomField::Journal怎么用?PHP CustomField::Journal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CustomField的用法示例。


在下文中一共展示了CustomField::Journal方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: DeleteAssociatedCustomFieldAsDefault

    /**
     * Deletes an associated CustomFieldAsDefault
     * @param CustomField $objCustomField
     * @return void
     */
    public function DeleteAssociatedCustomFieldAsDefault(CustomField $objCustomField)
    {
        if (is_null($this->intCustomFieldValueId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateCustomFieldAsDefault on this unsaved CustomFieldValue.');
        }
        if (is_null($objCustomField->CustomFieldId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateCustomFieldAsDefault on this CustomFieldValue with an unsaved CustomField.');
        }
        // Get the Database Object for this Class
        $objDatabase = CustomFieldValue::GetDatabase();
        // Perform the SQL Query
        $objDatabase->NonQuery('
				DELETE FROM
					`custom_field`
				WHERE
					`custom_field_id` = ' . $objDatabase->SqlVariable($objCustomField->CustomFieldId) . ' AND
					`default_custom_field_value_id` = ' . $objDatabase->SqlVariable($this->intCustomFieldValueId) . '
			');
        // Journaling
        if ($objDatabase->JournalingDatabase) {
            $objCustomField->Journal('DELETE');
        }
    }
开发者ID:proxymoron,项目名称:tracmor,代码行数:28,代码来源:CustomFieldValueGen.class.php

示例2: DeleteAssociatedCustomFieldAsCreatedBy

    /**
     * Deletes an associated CustomFieldAsCreatedBy
     * @param CustomField $objCustomField
     * @return void
     */
    public function DeleteAssociatedCustomFieldAsCreatedBy(CustomField $objCustomField)
    {
        if (is_null($this->intUserAccountId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateCustomFieldAsCreatedBy on this unsaved UserAccount.');
        }
        if (is_null($objCustomField->CustomFieldId)) {
            throw new QUndefinedPrimaryKeyException('Unable to call UnassociateCustomFieldAsCreatedBy on this UserAccount with an unsaved CustomField.');
        }
        // Get the Database Object for this Class
        $objDatabase = UserAccount::GetDatabase();
        // Perform the SQL Query
        $objDatabase->NonQuery('
				DELETE FROM
					`custom_field`
				WHERE
					`custom_field_id` = ' . $objDatabase->SqlVariable($objCustomField->CustomFieldId) . ' AND
					`created_by` = ' . $objDatabase->SqlVariable($this->intUserAccountId) . '
			');
        // Journaling
        if ($objDatabase->JournalingDatabase) {
            $objCustomField->Journal('DELETE');
        }
    }
开发者ID:jdellinger,项目名称:tracmor,代码行数:28,代码来源:UserAccountGen.class.php


注:本文中的CustomField::Journal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。