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


PHP Cart66Common::getWpContentUrl方法代码示例

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


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

示例1: elseif

         $mj_plugin_file = $plugin;
     } elseif (isset($mu_plugin)) {
         $mj_plugin_file = $mu_plugin;
     } elseif (isset($network_plugin)) {
         $mj_plugin_file = $network_plugin;
     }
     define('CART66_PATH', WP_PLUGIN_DIR . '/' . basename(dirname($mj_plugin_file)) . '/');
     define('CART66_URL', plugin_dir_url(CART66_PATH) . basename(dirname($mj_plugin_file)));
 }
 require_once CART66_PATH . "/models/Cart66CartWidget.php";
 require_once CART66_PATH . "/models/Cart66.php";
 require_once CART66_PATH . "/models/Cart66Common.php";
 define("CART66_ORDER_NUMBER", false);
 define("CART66_PRO", true);
 define('CART66_VERSION_NUMBER', cart66_plugin_version());
 define("WPCURL", Cart66Common::getWpContentUrl());
 define("WPURL", Cart66Common::getWpUrl());
 define("MIJIREH_CHECKOUT", 'https://secure.mijireh.com');
 if (CART66_PRO) {
     require_once CART66_PATH . "/pro/models/Cart66ProCommon.php";
 }
 // IS_ADMIN is true when the dashboard or the administration panels are displayed
 if (!defined("IS_ADMIN")) {
     define("IS_ADMIN", is_admin());
 }
 /* Uncomment this block of code for load time debugging
   $filename = CART66_PATH . "/log.txt";
   if(file_exists($filename) && is_writable($filename)) {
     file_put_contents($filename, "\n\n\n================= Loading Cart66 Main File [" . date('m/d/Y g:i:s a') . "] " .
       $_SERVER['REMOTE_ADDR'] . " " . $_SERVER['REQUEST_URI'] . " =================\n\n", FILE_APPEND);
   }
开发者ID:rbredow,项目名称:allyzabbacart,代码行数:31,代码来源:cart66.php


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