本文整理汇总了PHP中Opus_Document::getField方法的典型用法代码示例。如果您正苦于以下问题:PHP Opus_Document::getField方法的具体用法?PHP Opus_Document::getField怎么用?PHP Opus_Document::getField使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Opus_Document
的用法示例。
在下文中一共展示了Opus_Document::getField方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testFormatValueForPublicationState
public function testFormatValueForPublicationState()
{
$doc = new Opus_Document(3);
$field = $doc->getField('PublicationState');
$output = $this->__helper->format($field, 'Opus_Document');
// PublicationState is not translated right now
$this->assertEquals('draft', $output);
}
示例2: updateModel
/**
* Aktualisiert die Liste der zugewiesenen Collections für ein Dokument.
*
* Diese Funktion iteriert über alle Unterformulare und fragt die Collections ab. Die Collections werden in einem
* Array gesammelt und dann dem Dokument zugewiesen.
*
* @param Opus_Document $document
*/
public function updateModel($document)
{
$roleForms = $this->getSubForms();
$values = array();
foreach ($roleForms as $roleForm) {
$colForms = $roleForm->getSubForms();
foreach ($colForms as $colForm) {
$value = $colForm->getModel();
if (!is_null($value)) {
$values[] = $value;
}
}
}
$field = $document->getField('Collection');
$field->setValue($values);
}
示例3: updateModel
/**
* Aktualisiert das Dokument.
*
* @param Opus_Document $document
*/
public function updateModel($document)
{
$field = $document->getField($this->_fieldName);
$values = $this->getSubFormModels($document);
$field->setValue($values);
}