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


PHP DataValueFactory::newDataValueByProperty方法代码示例

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


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

示例1: constructDescriptionForPropertyObjectValue

 /**
  * @since 2.4
  *
  * @param DIProperty $property
  * @param string $chunk
  *
  * @return Description|null
  */
 public function constructDescriptionForPropertyObjectValue(DIProperty $property, $chunk)
 {
     $dataValue = $this->dataValueFactory->newDataValueByProperty($property);
     $dataValue->setContextPage($this->contextPage);
     // Indicates whether a value is being used by a query condition or not which
     // can lead to a modified validation of a value.
     $dataValue->setOption(DataValue::OPT_QUERY_CONTEXT, true);
     $description = $dataValue->getQueryDescription($chunk);
     $this->addError($dataValue->getErrors());
     return $description;
 }
开发者ID:jongfeli,项目名称:SemanticMediaWiki,代码行数:19,代码来源:DescriptionProcessor.php

示例2: getDemographics

 /**
  * @since 2.1
  *
  * @see https://en.wikipedia.org/wiki/Demographics_of_Paris
  *
  * @return Subobject
  */
 public function getDemographics()
 {
     if ($this->targetSubject === null) {
         throw new RuntimeException('Expected a target subject');
     }
     $subobject = new Subobject($this->targetSubject->getTitle());
     $subobject->setEmptyContainerForId('Paris#Demographics');
     $yearProperty = new YearProperty();
     $yearDataValue = $this->dataValueFactory->newDataValueByProperty($yearProperty->getProperty(), '2009');
     $subobject->addDataValue($yearDataValue);
     $subobject->addDataValue($this->getAreaValue());
     $subobject->addDataValue($this->getPopulationValue());
     $subobject->addDataValue($this->getPopulationDensityValue());
     return $subobject;
 }
开发者ID:jongfeli,项目名称:SemanticMediaWiki,代码行数:22,代码来源:ParisFactsheet.php


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