本文整理匯總了PHP中Audit::Journal方法的典型用法代碼示例。如果您正苦於以下問題:PHP Audit::Journal方法的具體用法?PHP Audit::Journal怎麽用?PHP Audit::Journal使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Audit
的用法示例。
在下文中一共展示了Audit::Journal方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: DeleteAssociatedAuditAsCreatedBy
/**
* Deletes an associated AuditAsCreatedBy
* @param Audit $objAudit
* @return void
*/
public function DeleteAssociatedAuditAsCreatedBy(Audit $objAudit)
{
if (is_null($this->intUserAccountId)) {
throw new QUndefinedPrimaryKeyException('Unable to call UnassociateAuditAsCreatedBy on this unsaved UserAccount.');
}
if (is_null($objAudit->AuditId)) {
throw new QUndefinedPrimaryKeyException('Unable to call UnassociateAuditAsCreatedBy on this UserAccount with an unsaved Audit.');
}
// Get the Database Object for this Class
$objDatabase = UserAccount::GetDatabase();
// Perform the SQL Query
$objDatabase->NonQuery('
DELETE FROM
`audit`
WHERE
`audit_id` = ' . $objDatabase->SqlVariable($objAudit->AuditId) . ' AND
`created_by` = ' . $objDatabase->SqlVariable($this->intUserAccountId) . '
');
// Journaling
if ($objDatabase->JournalingDatabase) {
$objAudit->Journal('DELETE');
}
}