本文整理汇总了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;
}
示例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");
示例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);
示例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;
}