本文整理汇总了PHP中Dataset::GetFields方法的典型用法代码示例。如果您正苦于以下问题:PHP Dataset::GetFields方法的具体用法?PHP Dataset::GetFields怎么用?PHP Dataset::GetFields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dataset
的用法示例。
在下文中一共展示了Dataset::GetFields方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ApplyFilter
private function ApplyFilter()
{
$fieldNames = array();
$fieldFilters = array();
foreach ($this->dataset->GetFields() as $field) {
if ($this->page->GetSimpleSearchAvailable() && $this->page->GetGrid()->SearchControl instanceof SimpleSearch) {
if ($this->page->GetGrid()->SearchControl->ContainsField($field->GetName())) {
if ($field->GetEngFieldType() != ftBlob) {
$fieldNames[] = $field->GetName();
$fieldFilters[] = new FieldFilter('%' . $this->value . '%', 'ILIKE', true);
}
} else {
if ($this->dataset->IsLookupFieldByPrimaryName($field->GetName()) != null) {
$lookupFieldName = $this->dataset->IsLookupFieldByPrimaryName($field->GetName());
if ($this->page->GetGrid()->SearchControl->ContainsField($lookupFieldName)) {
$fieldNames[] = $lookupFieldName;
$fieldFilters[] = new FieldFilter('%' . $this->value . '%', 'ILIKE', true);
}
}
}
}
}
if (count($fieldFilters) > 0) {
$this->dataset->AddCompositeFieldFilter('OR', $fieldNames, $fieldFilters);
}
}
示例2: FormatDatasetFieldsTemplate
public static function FormatDatasetFieldsTemplate(Dataset $dataset, $template, IDelegate $processValue = null)
{
$result = $template;
foreach ($dataset->GetFields() as $field) {
if ($dataset->IsLookupField($field->GetNameInDataset())) {
$result = StringUtils::ReplaceVariableInTemplate($result, $field->GetAlias(), $processValue == null ? $dataset->GetFieldValueByName($field->GetAlias()) : $processValue->Call($dataset->GetFieldValueByName($field->GetAlias()), $field->GetAlias()));
} else {
$result = StringUtils::ReplaceVariableInTemplate($result, $field->GetName(), $processValue == null ? $dataset->GetFieldValueByName($field->GetNameInDataset()) : $processValue->Call($dataset->GetFieldValueByName($field->GetNameInDataset()), $field->GetNameInDataset()));
}
}
return $result;
}