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


PHP MYPDF::__construct方法代码示例

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


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

示例1: array

 function __construct(CTParametro $objParam)
 {
     $this->objParam = $objParam;
     $this->datos_reporte = array();
     $this->firma = array();
     $this->firmar = $this->objParam->getParametro('firmar');
     $this->fecha_rep = $this->objParam->getParametro('fecha_firma');
     $this->usuario_firma = $this->objParam->getParametro('usuario_firma');
     $this->nombre_usuario_firma = $this->objParam->getParametro('nombre_usuario_firma');
     $this->url_archivo = dirname(__FILE__) . "/../../../reportes_generados/" . $this->objParam->getParametro('nombre_archivo');
     $this->nombre_archivo = $this->objParam->getParametro('nombre_archivo');
     $this->titulo = $this->objParam->getParametro('titulo_archivo');
     $this->orientacion = $this->objParam->getParametro('orientacion');
     parent::__construct($this->orientacion, 'mm', $this->objParam->getParametro('tamano'), true, 'UTF-8', false);
     $this->SetTitle($this->titulo);
     $this->SetCreator('pXP');
     $this->SetAuthor('kplian');
     $this->SetSubject("File generated by pXP framework");
     $this->SetKeywords("TCPDF, PDF, pXP");
 }
开发者ID:hcvcastro,项目名称:pxp,代码行数:20,代码来源:ReportePDFFormulario.php

示例2: dirname

 /**
  * Nombre funcion:	ReportePDF
  * Proposito:		Constructor de la Función genérica de ReportePDF (Define el nombre del archivo, titulo, cabecera derecha y logo y pie)
  * Fecha creacion:	12/04/2009
  * @param orientation Es la orientación el papel
  * @param formato es el formato del papel que puede ser A4 letter u otro
  * @param nom_archivo es el nombre del archivo ene l cual se genera el reporte
  * @param tit es el titulo del reporte
  * @param der define el texto que tendra la cabecera derecha del reporte
  * 	  
  */
 function __construct(CTParametro $objParam)
 {
     $this->objParam = $objParam;
     $this->url_archivo = dirname(__FILE__) . "/../../../reportes_generados/" . $this->objParam->getParametro('nombre_archivo');
     $this->nombre_archivo = $this->objParam->getParametro('nombre_archivo');
     $this->titulo = $this->objParam->getParametro('titulo_archivo');
     $this->orientacion = $this->objParam->getParametro('orientacion');
     $this->fecha_pie = 1;
     $this->setBarcode(date('d-m-Y H:i:s') . ",usuario:" . $_SESSION['_LOGIN']);
     $this->tipoReporte = $this->objParam->getParametro('tipoReporte');
     //Ejecución del constructor del padre
     parent::__construct($this->orientacion, 'mm', $this->objParam->getParametro('tamano'), true, 'UTF-8', false);
     //Información del documento
     $this->SetCreator('pXP');
     $this->SetAuthor('kplian');
     $this->SetTitle($this->titulo);
     $this->SetSubject("File generated by pXP framework");
     $this->SetKeywords("TCPDF, PDF, pXP, {$tit}");
     //$this->SetProtection($permissions=array('print','copy','print-high','modify'), $user_pass='', $owner_pass=null, $mode=0, $pubkeys=null);
     $this->SetHeaderData($_SESSION['_DIR_LOGO'], PDF_HEADER_LOGO_WIDTH, $this->titulo, '');
     $this->SetHeaderData($_SESSION['_DIR_LOGO'], PDF_HEADER_LOGO_WIDTH, $this->titulo, '');
     //set header and footer fonts
     $this->setHeaderFont(array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
     $this->setFooterFont(array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
     //set default monospaced font
     $this->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
     //set margins
     $this->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
     $this->SetHeaderMargin(PDF_MARGIN_HEADER);
     $this->SetFooterMargin(PDF_MARGIN_FOOTER);
     //set auto page breaks
     $this->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
     //set image scale factor
     $this->setImageScale(PDF_IMAGE_SCALE_RATIO);
     //Inicializa el array para numeración de columnas
     $this->arrNumeracion = array('label' => 'Nro.', 'name' => 'nro', 'width' => '65', 'type' => 'Field');
 }
开发者ID:hcvcastro,项目名称:pxp,代码行数:48,代码来源:ReportePDF.php


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