當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。