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


PHP Journal2Utils::canGenerateImages方法代码示例

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


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

示例1: getLabels

 public function getLabels($product_id)
 {
     if (!defined('JOURNAL_INSTALLED')) {
         return array();
     }
     /* get latest label */
     if ($this->journal2->settings->get('label_latest_status', 'always') !== 'never') {
         if (self::$latest === null) {
             self::$latest = $this->model_catalog_product->getLatestProducts($this->journal2->settings->get('label_latest_limit', 10));
         }
         if (!$this->hasLabel($product_id, 'latest') && is_array(self::$latest)) {
             foreach (self::$latest as $product) {
                 if ($product_id == $product['product_id']) {
                     $this->addLabel($product_id, 'latest', $this->journal2->settings->get('label_latest_text', 'New'));
                     break;
                 }
             }
         }
     }
     $product = $this->model_catalog_product->getProduct($product_id);
     /* get special label */
     if ($this->journal2->settings->get('label_special_status', 'always') !== 'never') {
         if ((double) $product['special']) {
             if ($this->journal2->settings->get('label_special_type', 'percent') === 'percent') {
                 if ($this->config->get('config_customer_price') && $this->customer->isLogged() || !$this->config->get('config_customer_price')) {
                     $price = $this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax'));
                 } else {
                     $price = false;
                 }
                 $special = $this->tax->calculate($product['special'], $product['tax_class_id'], $this->config->get('config_tax'));
                 if ($price > 0.0) {
                     $this->addLabel($product_id, 'sale', '-' . round(($price - $special) / $price * 100) . '%');
                 }
             } else {
                 $this->addLabel($product_id, 'sale', $this->journal2->settings->get('label_special_text', 'Sale'));
             }
         }
     }
     /* get stock label */
     if ($product['quantity'] <= 0 && Journal2Utils::canGenerateImages()) {
         $this->addLabel($product_id, 'outofstock', $product['stock_status']);
     }
     if (!isset(self::$cache[$product_id])) {
         return array();
     }
     return self::$cache[$product_id];
 }
开发者ID:deepakdesai,项目名称:CressoyoWebApp,代码行数:47,代码来源:product.php


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