本文整理汇总了PHP中PhabricatorCustomField::getObjectField方法的典型用法代码示例。如果您正苦于以下问题:PHP PhabricatorCustomField::getObjectField方法的具体用法?PHP PhabricatorCustomField::getObjectField怎么用?PHP PhabricatorCustomField::getObjectField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhabricatorCustomField
的用法示例。
在下文中一共展示了PhabricatorCustomField::getObjectField方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCustomFieldForTransaction
/**
* @task customfield
*/
private function getCustomFieldForTransaction(PhabricatorLiskDAO $object, PhabricatorApplicationTransaction $xaction)
{
$field_key = $xaction->getMetadataValue('customfield:key');
if (!$field_key) {
throw new Exception("Custom field transaction has no 'customfield:key'!");
}
$field = PhabricatorCustomField::getObjectField($object, PhabricatorCustomField::ROLE_APPLICATIONTRANSACTIONS, $field_key);
if (!$field) {
throw new Exception("Custom field transaction has invalid 'customfield:key'; field " . "'{$field_key}' is disabled or does not exist.");
}
if (!$field->shouldAppearInApplicationTransactions()) {
throw new Exception("Custom field transaction '{$field_key}' does not implement " . "integration for ApplicationTransactions.");
}
$field->setViewer($this->getActor());
return $field;
}
示例2: getTransactionCustomField
protected function getTransactionCustomField()
{
switch ($this->getTransactionType()) {
case PhabricatorTransactions::TYPE_CUSTOMFIELD:
$key = $this->getMetadataValue('customfield:key');
if (!$key) {
return null;
}
$object = $this->getObject();
if (!$object instanceof PhabricatorCustomFieldInterface) {
return null;
}
$field = PhabricatorCustomField::getObjectField($object, PhabricatorCustomField::ROLE_APPLICATIONTRANSACTIONS, $key);
if (!$field) {
return null;
}
$field->setViewer($this->getViewer());
return $field;
}
return null;
}