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


PHP ArrayUtils::GetArrayValueDef方法代码示例

本文整理汇总了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));
 }
开发者ID:martinw0102,项目名称:ProjetSyst,代码行数:12,代码来源:print_renderer.php

示例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));
 }
开发者ID:howareyoucolin,项目名称:demo,代码行数:17,代码来源:print_renderer.php

示例3: GetAggregateFor

 /**
  * @param CustomViewColumn $column
  * @return Aggregate
  */
 public function GetAggregateFor(CustomViewColumn $column)
 {
     return ArrayUtils::GetArrayValueDef($this->totals, $column->GetName());
 }
开发者ID:howareyoucolin,项目名称:demo,代码行数:8,代码来源:grid.php

示例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));
 }
开发者ID:outsourcinggithub,项目名称:outsourcing,代码行数:29,代码来源:pdf_renderer.php

示例5: GetMasterFieldValueByName

 public function GetMasterFieldValueByName($fieldName)
 {
     return ArrayUtils::GetArrayValueDef($this->masterFieldValue, $fieldName);
 }
开发者ID:martinw0102,项目名称:ProjetSyst,代码行数:4,代码来源:dataset.php

示例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));
 }
开发者ID:blakeHelm,项目名称:BallotPath,代码行数:101,代码来源:pdf_renderer.php


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