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


PHP Pdf::instance方法代码示例

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


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

示例1: instance

 public static function instance()
 {
     if (!$instance) {
         self::$instance = new Pdf();
     }
     return self::$instance;
 }
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:7,代码来源:Pdf.class.php

示例2: Client

    include_once __DIR__ . "/../../classes/Commande.class.php";
    include_once __DIR__ . "/../../classes/Client.class.php";
    include_once __DIR__ . "/../../classes/Venteprod.class.php";
    include_once __DIR__ . "/../../classes/Produit.class.php";
    include_once __DIR__ . "/../../classes/Adresse.class.php";
    include_once __DIR__ . "/../../classes/Zone.class.php";
    include_once __DIR__ . "/../../classes/Pays.class.php";
    include_once __DIR__ . "/../../fonctions/divers.php";
    $client = new Client();
    $client->charger_id($commande->client);
    $pays = new Pays();
    $pays->charger($client->pays);
    $zone = new Zone();
    $zone->charger($pays->zone);
    include_once __DIR__ . "/modeles/facture.php";
    $facture = new Facture();
    $facture->creer($_GET['ref']);
    exit;
}
// Le moteur ne sortira pas le contenu de $res
$sortie = false;
// Le fond est le template de facture.
$reptpl = __DIR__ . "/template/";
$fond = "facture.html";
$lang = $commande->lang;
// Compatibilité avec le moteur.
$_REQUEST['commande'] = $_GET['ref'];
require_once __DIR__ . "/../../fonctions/moteur.php";
require_once __DIR__ . "/../../classes/Pdf.class.php";
Pdf::instance()->generer($res, $_GET['ref'] . ".pdf");
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:30,代码来源:facture.php

示例3: Commande

if (!est_autorise("acces_commandes")) {
    exit;
}
$commande = new Commande();
$commande->charger_ref($ref);
if (file_exists(__DIR__ . '/../client/pdf/modeles/facture.php')) {
    $commande = new Commande();
    $commande->charger_ref($ref);
    $client = new Client();
    $client->charger_id($commande->client);
    $pays = new Pays();
    $pays->charger($client->pays);
    $zone = new Zone();
    $zone->charger($pays->zone);
    require_once "../client/pdf/modeles/livraison.php";
    $livraison = new Livraison();
    $livraison->creer($ref);
    exit;
}
$nom_fichier_pdf = $commande->livraison . '.pdf';
// Le moteur ne sortira pas le contenu de $res
$sortie = false;
// Le fond est le template de livraison.
$reptpl = __DIR__ . "/../client/pdf/template/";
$fond = "livraison.html";
$lang = $commande->lang;
// Compatibilité avec le moteur.
$_REQUEST['commande'] = $ref;
require_once __DIR__ . "/../fonctions/moteur.php";
Pdf::instance()->generer($res, $nom_fichier_pdf);
开发者ID:anti-conformiste,项目名称:thelia1,代码行数:30,代码来源:livraison.php

示例4: singleton

 /**
  * Get the singleton instance of the object or instantiate a new object.
  *
  * @return Pdf
  */
 static function singleton()
 {
     if (!self::$instance) {
         self::$instance = new Pdf();
     }
     return self::$instance;
 }
开发者ID:elgodmaster,项目名称:soccer2,代码行数:12,代码来源:Pdf.php


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