本文整理汇总了PHP中DataGrid::printar_pdf方法的典型用法代码示例。如果您正苦于以下问题:PHP DataGrid::printar_pdf方法的具体用法?PHP DataGrid::printar_pdf怎么用?PHP DataGrid::printar_pdf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataGrid
的用法示例。
在下文中一共展示了DataGrid::printar_pdf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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>";
}
}