本文整理汇总了PHP中Audit::setObject方法的典型用法代码示例。如果您正苦于以下问题:PHP Audit::setObject方法的具体用法?PHP Audit::setObject怎么用?PHP Audit::setObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Audit
的用法示例。
在下文中一共展示了Audit::setObject方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: save
/**
* Internal function which will create an audit record for the object that was
* being tracked.
*
* @param string $object The name of the object that was being tracked.
* @param mixed $object_key The primary key of the object that was being tracked.
* @param string $changes A (serialized) string containing the individual changes of the object.
* @param string $query The SQL query that was executed for this record.
* @param string $type The audit type. This can be one of the following constants:
* TYPE_ADD, TYPE_UPDATE, TYPE_DELETE, or TYPE_SELECT
* @return void
*/
private function save($object, $object_key, $changes, $query, $type, $domain_id = 0)
{
$audit = new Audit();
$audit->setRemoteIpAddress($this->getRemoteIP());
$audit->setObject($object);
$audit->setObjectKey($object_key);
$audit->setDomainId($domain_id);
$audit->setObjectChanges($changes);
$audit->setQuery($query);
$audit->setType($type);
$audit->setCreatedAt(date($this->dateFormat));
$audit->save();
}