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


PHP DataGrid::pdf方法代码示例

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


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

示例1: DataGrid

<?php

require_once '../php/Connect.php';
require_once '../php/DataGrid.php';
require_once '../php/ConsultarData.php';
$Grid = new DataGrid("tab");
// validamos los parámetros que recibimos
$criterio = isset($_REQUEST['_criterio']) ? $_REQUEST['_criterio'] : '';
$page = isset($_REQUEST['_page']) ? $_REQUEST['_page'] : 1;
$regxpag = isset($_REQUEST['_regxpag']) ? $_REQUEST['_regxpag'] : 10;
$Grid->excel();
$Grid->pdf();
$Grid->addCheckBox(array("values" => array("apellidos", "nombres"), "ajax" => array("funcion" => "index.check", "params" => array("apellidos", "nombres")), "fnCallback" => function ($fila, $row) {
    // se trata de un closure o función anónima, a la que accedemos por el indice (fnCallback)
    if ($row['genero'] == 'M') {
        $cadena = '<input type="checkbox" id="chk_gridT' . $fila . '" name="chk_gridT[]" disabled>';
    } else {
        $cadena = '<input type="checkbox" id="chk_gridT' . $fila . '" name="chk_gridT[]">';
    }
    return $cadena;
}));
$Grid->addColumn(array("title" => "Nombres", "campo" => "nombres"));
$Grid->addColumn(array("title" => "Apellidos", "campo" => "apellidos", "fnCallback" => function ($fila, $row) {
    // se trata de un closure o función anónima, a la que accedemos por el indice (fnCallback)
    $cadena = $row['nombres'] . ' - ' . $row['apellidos'];
    return $cadena;
}));
$Grid->AddAccion(array("titulo" => "Editar", "icono" => "glyphicon glyphicon-pencil", "ajax" => array("funcion" => "index.edit", "params" => array("apellidos", "nombres")), "fnCallback" => function ($fila, $row) {
    // se trata de un closure o función anónima, a la que accedemos por el indice (fnCallback)
    $cadena = $fila . '.- ' . $row['nombres'] . ' - ' . $row['apellidos'];
    return $cadena;
开发者ID:pablotebb,项目名称:RDDatagrid,代码行数:31,代码来源:Grilla.php

示例2: printar

 /**
  *  se le introduce la consulta en sql y el tipo de formato en que se quiere importar:"pdf","csv" o "html"
  */
 public static function printar($query, $tipo)
 {
     //Cargamos los datos de la BD y el numero de lineas por pagina de config.json
     cargar_configuracion();
     //inicializamos el SQLFrame pasandole el tipo en que queremos el informe
     $sqlframe = new SQLFrame($tipo);
     //conectamos con la BD
     $con = conectar();
     //guardamos en data lo que nos viene de la base de datos
     DataGrid::$data = mysql_query("{$query}", $con) or die(mysql_error());
     //Si el tipo es pdf creamos el objeto pdf para guardarlo
     if (strcmp($tipo, "pdf") == 0) {
         DataGrid::$pdf = new PDF(rand(5, 50));
     }
     //Si el tipo es html creamos la tabla y la fila donde iran los datos de la cabecera
     if (strcmp($tipo, "html") == 0) {
         echo "<table class='tabla'>";
         echo "<tr class='cabecera'>";
     }
     /*Si no es el tipo pdf, printamos el nombre de las columnas de la BD, en pdf ya lo hace el cabecera informe*/
     if (strcmp($tipo, "pdf") != 0) {
         $i = 0;
         while ($i < mysql_num_fields(DataGrid::$data)) {
             if (strcmp($tipo, "html") == 0) {
                 echo "<td>" . mysql_field_name(DataGrid::$data, $i) . "</td>";
             } else {
                 echo mysql_field_name(DataGrid::$data, $i) . ";";
             }
             $i++;
         }
         if (strcmp($tipo, "html") == 0) {
             echo "</tr>";
         } else {
             if (strcmp($tipo, "csv") == 0) {
                 echo "\n";
             }
         }
     }
     /*Para cada fila llamamos al add del sqlframe para ver si tiene que printar algun subtotal y printamos la fila*/
     while ($row = mysql_fetch_assoc(DataGrid::$data)) {
         $sqlframe->add($row);
         if (strcmp($tipo, "html") == 0) {
             echo "<tr class='fila'>";
         }
         $i = 0;
         if (strcmp($tipo, "pdf") != 0) {
             while ($i < mysql_num_fields(DataGrid::$data)) {
                 if (is_float($row[mysql_field_name(DataGrid::$data, $i)] + 0)) {
                     if (strcmp($tipo, "html") == 0) {
                         echo "<td>" . number_format($row[mysql_field_name(DataGrid::$data, $i)], 2) . "</td>";
                     } else {
                         if (strcmp($tipo, "csv") == 0) {
                             echo number_format($row[mysql_field_name(DataGrid::$data, $i)], 2) . ";";
                         }
                     }
                 } else {
                     if (strcmp($tipo, "html") == 0) {
                         echo "<td>" . $row[mysql_field_name(DataGrid::$data, $i)] . "</td>";
                     } else {
                         if (strcmp($tipo, "csv") == 0) {
                             echo $row[mysql_field_name(DataGrid::$data, $i)] . ";";
                         }
                     }
                 }
                 $i++;
             }
         } else {
             DataGrid::$pdf->add_row($row);
             /*Para el pdf ademas incrementamos la linea en que estamos y miramos si hemos llegado al final de la pagina,
              * si hemos llegado creamo una nueva y guardamos la vieja en el array de gif.
              */
             DataGrid::$pdf->add_linea();
             DataGrid::$pdf->comprobar_tamaño();
         }
         if (strcmp($tipo, "html") == 0) {
             echo "</tr>";
         } else {
             if (strcmp($tipo, "csv") == 0) {
                 echo "\n";
             }
         }
     }
     /* printamos todos los groupby así tenemos los subtotales que quedaban y el TOTAL*/
     $sqlframe->printar_todos();
     /*para pdf añadimos al array de gif el gif actual, montamos el pdf con el array de gif y ponemos el html que muestra el pdf*/
     if (strcmp($tipo, "pdf") == 0) {
         DataGrid::$pdf->añadir_gif();
         $nompdf = DataGrid::$pdf->crear_PDF();
         DataGrid::printar_pdf($nompdf);
     }
     /* en html cerramos la tabla*/
     if (strcmp($tipo, "html") == 0) {
         echo "</table>";
     }
 }
开发者ID:raulgl,项目名称:PHPDataGrid,代码行数:98,代码来源:DataGrid.php


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