本文整理汇总了PHP中ArrayUtils::GetArrayValueDef方法的典型用法代码示例。如果您正苦于以下问题:PHP ArrayUtils::GetArrayValueDef方法的具体用法?PHP ArrayUtils::GetArrayValueDef怎么用?PHP ArrayUtils::GetArrayValueDef使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArrayUtils
的用法示例。
在下文中一共展示了ArrayUtils::GetArrayValueDef方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: RenderGrid
public function RenderGrid(Grid $Grid)
{
$Grid->GetDataset()->Open();
$totals = array();
if ($Grid->HasTotals()) {
$totalValues = $Grid->GetTotalValues();
foreach ($Grid->GetPrintColumns() as $column) {
$totals[] = $column->GetTotalPresentationData(ArrayUtils::GetArrayValueDef($totalValues, $column->GetName(), null));
}
}
$this->doRenderGrid($Grid, PageMode::PrintAll, 'print/grid.tpl', array('Totals' => $totals));
}
示例2: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$Grid->GetDataset()->Open();
while ($Grid->GetDataset()->Next()) {
$rowValues = $Grid->GetDataset()->GetCurrentFieldValues();
$Rows[] = Q::ToArray(Q::Select($Grid->GetPrintColumns(), Q::L('$c => $_1->RenderViewColumn($c, $_2)', $this, $rowValues)));
}
$totals = array();
if ($Grid->HasTotals()) {
$totalValues = $Grid->GetTotalValues();
foreach ($Grid->GetPrintColumns() as $column) {
$totals[] = $column->GetTotalPresentationData(ArrayUtils::GetArrayValueDef($totalValues, $column->GetName(), null));
}
}
$this->DisplayTemplate('print/grid.tpl', array('Grid' => $Grid), array('Columns' => $Grid->GetPrintColumns(), 'Rows' => $Rows, 'Totals' => $totals));
}
示例3: GetAggregateFor
/**
* @param CustomViewColumn $column
* @return Aggregate
*/
public function GetAggregateFor(CustomViewColumn $column)
{
return ArrayUtils::GetArrayValueDef($this->totals, $column->GetName());
}
示例4: RenderGrid
function RenderGrid(Grid $Grid)
{
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $Column->GetCaption();
}
while ($Grid->GetDataset()->Next()) {
$Row = array();
$rowValues = $Grid->GetDataset()->GetFieldValues();
$cellStyles = $this->GetStylesForColumn($Grid, $rowValues);
foreach ($Grid->GetExportColumns() as $column) {
$columnName = $Grid->GetColumnName($column);
$cell['Value'] = $this->RenderViewColumn($column, $rowValues);
$cell['Align'] = $column->GetAlign();
$cellStyle = new StyleBuilder();
$cellStyle->Add('width', $column->GetFixedWidth());
if (!$column->GetWordWrap()) {
$cellStyle->Add('white-space', 'nowrap');
}
$cellStyle->AddStyleString(ArrayUtils::GetArrayValueDef($cellStyles, $columnName));
$cell['Style'] = $cellStyle->GetStyleString();
$Row[] = $cell;
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/pdf_grid.tpl', array(), array('TableHeader' => $this->CreateTableHeaderData($Grid), 'Rows' => $Rows));
}
示例5: GetMasterFieldValueByName
public function GetMasterFieldValueByName($fieldName)
{
return ArrayUtils::GetArrayValueDef($this->masterFieldValue, $fieldName);
}
示例6: RenderGrid
//.........这里部分代码省略.........
while($Grid->GetDataset()->Next())
{
$show = true;
$Grid->BeforeShowRecord->Fire(array(&$show));
if (!$show)
continue;
$Row = array();
$AfterRowControls = '';
$rowValues = $Grid->GetDataset()->GetFieldValues();
$rowCssStyle = '';
$cellCssStyles = array();
$Grid->OnCustomDrawCell->Fire(array($rowValues, &$cellCssStyles, &$rowCssStyle));
$cellCssStyles_Simple = $this->GetStylesForColumn($Grid, $rowValues);
$cellCssStyles = array_merge($cellCssStyles_Simple, $cellCssStyles);
$currentRowColumnsCssStyles = array();
$columnsChars = array();
for($i = 0; $i < count($bands); $i++)
{
$band = $bands[$i];
foreach($band->GetColumns() as $Column)
{
$columnName = $Grid->GetDataset()->IsLookupField($Column->GetName()) ?
$Grid->GetDataset()->IsLookupFieldNameByDisplayFieldName($Column->GetName()) :
$Column->GetName();
if (array_key_exists($columnName, $cellCssStyles))
{
$styleBuilder = new StyleBuilder();
$styleBuilder->AddStyleString($rowCssStyle);
$styleBuilder->AddStyleString($cellCssStyles[$columnName]);
$currentRowColumnsCssStyles[] = $styleBuilder->GetStyleString();
}
else
$currentRowColumnsCssStyles[] = $rowCssStyle;
if ($Column->GetFixedWidth() != null)
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= sprintf('width: %s;', $Column->GetFixedWidth());
if (!$Column->GetWordWrap())
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= sprintf('white-space: nowrap;', $Column->GetFixedWidth());
$columnRenderResult = '';
$customRenderColumnHandled = false;
$Grid->OnCustomRenderColumn->Fire(array($columnName, $Column->GetData(), $rowValues, &$columnRenderResult, &$customRenderColumnHandled));
$columnRenderResult = $customRenderColumnHandled ? $Grid->GetPage()->RenderText($columnRenderResult) : $this->Render($Column);
$Row[] = $columnRenderResult;
$columnsChars[] = ($Column->IsDataColumn() ? 'data' : 'misc');
$afterRow = $Column->GetAfterRowControl();
if (isset($afterRow))
$AfterRowControls .= $this->Render($afterRow);
}
if ($i < (count($bands) - 1))
$currentRowColumnsCssStyles[count($currentRowColumnsCssStyles) - 1] .= ($Grid->GetPage()->GetPageDirection() == 'rtl' ? 'border-left: ' : 'border-right: ' ). 'solid 2px' . ' #000000;';
}
$recordCount++;
if ($Grid->GetAllowDeleteSelected())
$RowPrimaryKeys[] = $Grid->GetDataset()->GetPrimaryKeyValues();
$Rows[] = $Row;
$AfterRows[] = $AfterRowControls;
$rowCssStyles[] = $rowCssStyle;
$rowColumnsCssStyles[] = $currentRowColumnsCssStyles;
$rowColumnsChars[] = $columnsChars;
}
*/
$Rows = array();
$HeaderCaptions = array();
$Grid->GetDataset()->Open();
foreach ($Grid->GetExportColumns() as $Column) {
$HeaderCaptions[] = $Column->GetCaption();
}
while ($Grid->GetDataset()->Next()) {
$Row = array();
$rowValues = $Grid->GetDataset()->GetFieldValues();
$cellStyles = $this->GetStylesForColumn($Grid, $rowValues);
foreach ($Grid->GetExportColumns() as $column) {
$columnName = $Grid->GetDataset()->IsLookupField($column->GetName()) ? $Grid->GetDataset()->IsLookupFieldNameByDisplayFieldName($column->GetName()) : $column->GetName();
$cell['Value'] = $this->RenderViewColumn($column, $rowValues);
$cell['Align'] = $column->GetAlign();
$cellStyle = new StyleBuilder();
$cellStyle->Add('width', $column->GetFixedWidth());
if (!$column->GetWordWrap()) {
$cellStyle->Add('white-space', 'nowrap');
}
$cellStyle->AddStyleString(ArrayUtils::GetArrayValueDef($cellStyles, $columnName));
$cell['Style'] = $cellStyle->GetStyleString();
$Row[] = $cell;
}
$Rows[] = $Row;
}
$this->DisplayTemplate('export/pdf_grid.tpl', array(), array('TableHeader' => $this->CreateTableHeaderData($Grid), 'Rows' => $Rows));
}