本文整理匯總了PHP中Varien_Profiler::stop方法的典型用法代碼示例。如果您正苦於以下問題:PHP Varien_Profiler::stop方法的具體用法?PHP Varien_Profiler::stop怎麽用?PHP Varien_Profiler::stop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Varien_Profiler
的用法示例。
在下文中一共展示了Varien_Profiler::stop方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sendMail
public function sendMail()
{
// Set sender information
$senderName = Mage::helper('abandonedrecover/config')->getSenderName();
$senderEmail = Mage::helper('abandonedrecover/config')->getSenderEmail();
// Get Store ID
$storeId = Mage::app()->getStore()->getId();
$template = Mage::getModel('core/email_template');
$emailTemplateId = Mage::helper('abandonedrecover/config')->getEmailTemplateId();
$modelEmailTemplate = Mage::getModel('adminhtml/email_template')->load($emailTemplateId);
$template->setTemplateStyles($modelEmailTemplate->getTemplateStyles());
$template->setTemplateText($modelEmailTemplate->getTemplateText());
$host = Mage::helper('abandonedrecover/config')->getHost();
$subject = $modelEmailTemplate->getTemplateSubject();
$collection = Mage::getResourceModel('reports/quote_collection');
$storeIds = Mage::app()->getStore()->getId();
$collection->prepareForAbandonedReport($storeIds);
foreach ($collection as $item) {
$vars = array();
$reception = array();
$reception['fromemail'] = $senderEmail;
$reception['fromname'] = $senderName;
$reception['toemail'] = $item->getCustomerEmail();
$reception['toname'] = $item->getCustomerName();
$vars['order'] = $item;
$vars['abandoned_customer'] = $item;
$template->setDesignConfig(array('area' => 'frontend', 'store' => $storeId));
Varien_Profiler::start("email_template_proccessing");
$templateProcessed = $template->getProcessedTemplate($vars, true);
Varien_Profiler::stop("email_template_proccessing");
Mage::helper('abandonedrecover')->sendMail($host, $subject, $templateProcessed, $reception);
}
return true;
}
示例2: getSkinUrl
/**
* Get skin file url
* -- Mod: Add file modification time to URL for caching purposes
*
* @param string $file
* @param array $params
* @return string
*/
public function getSkinUrl($file = null, array $params = array())
{
Varien_Profiler::start(__METHOD__);
if (empty($params['_type'])) {
$params['_type'] = 'skin';
}
if (empty($params['_default'])) {
$params['_default'] = false;
}
$this->updateParamDefaults($params);
if (!empty($file)) {
$result = $this->_fallback($file, $params, array(array(), array('_theme' => $this->getFallbackTheme()), array('_theme' => self::DEFAULT_THEME)));
}
if (!empty($file)) {
$filename = $this->getFilename($file, array('_type' => 'skin'));
if (file_exists($filename)) {
$path = pathinfo($file);
if (array_key_exists('extension', $path) && in_array($path['extension'], array('css', 'js', 'png', 'jpg', 'gif'))) {
$mtime = filemtime($filename);
$file = ($path['dirname'] != '.' ? $path['dirname'] . DS : '') . $path['filename'] . '.' . $mtime . '.' . $path['extension'];
}
}
}
$result = $this->getSkinBaseUrl($params) . (empty($file) ? '' : $file);
Varien_Profiler::stop(__METHOD__);
return $result;
}
示例3: prepareFeed
/**
* Prepare the feed file and returns its path
*
* @param array $productsData
* @param int $storeId
* @return string
*/
public function prepareFeed(array $productsData, $storeId)
{
$mId = $this->getVendorConfig('merchant_id', $storeId);
$company = $this->getVendorConfig('company', $storeId);
if (!$mId || !$company) {
Mage::throwException(Mage::helper('productfeed')->__('LinkShare Merchant ID and Company Name must be set.'));
}
Varien_Profiler::start('productfeed_' . $this->getVendorCode() . '::' . __FUNCTION__);
$content = implode(self::DELIMITER, array('HDR', $mId, $company, Mage::getModel('core/date')->date('Y-m-d/H:i:s'))) . self::EOL;
foreach ($productsData as $row) {
$content .= $row . self::EOL;
}
$filename = $mId . '_nmerchandis' . Mage::getModel('core/date')->date('Ymd') . '.txt';
$filepath = $this->getFeedStorageDir() . $filename;
try {
$ioAdapter = new Varien_Io_File();
$ioAdapter->setAllowCreateFolders(true);
$ioAdapter->createDestinationDir($this->getFeedStorageDir());
$ioAdapter->cd($this->getFeedStorageDir());
$ioAdapter->streamOpen($filename);
$ioAdapter->streamWrite($content);
Varien_Profiler::stop('productfeed_' . $this->getVendorCode() . '::' . __FUNCTION__);
return $filepath;
} catch (Exception $e) {
Varien_Profiler::stop('productfeed_' . $this->getVendorCode() . '::' . __FUNCTION__);
Mage::throwException(Mage::helper('productfeed')->__('Could not write feed file to path: %s, %s', $filepath, $e->getMessage()));
}
}
示例4: start
public function start($sessionName = null)
{
if (isset($_SESSION)) {
return $this;
}
Varien_Profiler::start(__METHOD__ . '/setOptions');
if (is_writable(Mage::getBaseDir('session'))) {
session_save_path(Mage::getBaseDir('session'));
}
Varien_Profiler::stop(__METHOD__ . '/setOptions');
session_module_name('files');
/*
$sessionResource = Mage::getResourceSingleton('core/session');
$sessionResource->setSaveHandler();
*/
if ($this->getCookieLifetime() !== null) {
ini_set('session.gc_maxlifetime', $this->getCookieLifetime());
}
if ($this->getCookiePath() !== null) {
ini_set('session.cookie_path', $this->getCookiePath());
}
if ($this->getCookieDomain() !== null) {
ini_set('session.cookie_domain', $this->getCookieDomain());
}
if (!empty($sessionName)) {
session_name($sessionName);
}
// potential custom logic for session id (ex. switching between hosts)
$this->setSessionId();
Varien_Profiler::start(__METHOD__ . '/start');
session_start();
Varien_Profiler::stop(__METHOD__ . '/start');
return $this;
}
示例5: run
/**
* Run script
*
* @return void
*/
public function run()
{
Mage::helper('ho_import/log')->setMode('cli');
$action = $this->getArg('action');
if (empty($action)) {
echo $this->usageHelp();
} else {
Varien_Profiler::start("shell-productimport" . $this->getArg('action'));
//disable the inline translator for the cli, breaks the import if it is enabled.
Mage::getConfig()->setNode('stores/admin/dev/translate_inline/active', 0);
//initialize the translations so that we are able to translate things.
Mage::app()->loadAreaPart(Mage_Core_Model_App_Area::AREA_ADMINHTML, Mage_Core_Model_App_Area::PART_TRANSLATE);
$actionMethodName = $action . 'Action';
if (method_exists($this, $actionMethodName)) {
$this->{$actionMethodName}();
} else {
echo "Action {$action} not found!\n";
echo $this->usageHelp();
exit(1);
}
Varien_Profiler::stop("shell-productimport-" . $this->getArg('action'));
/** @var $profiler Aoe_Profiler_Helper_Data */
if (Mage::helper('core')->isModuleEnabled('aoe_profiler') && ($profiler = Mage::helper('aoe_profiler') && $this->getArg('profiler') == '1')) {
$profiler->renderProfilerOutputToFile();
}
}
}
示例6: getSelectedAttributesInfo
public function getSelectedAttributesInfo($product = null)
{
$attributes = array();
Varien_Profiler::start('CONFIGURABLE:' . __METHOD__);
if ($attributesOption = $this->getProduct($product)->getCustomOption('attributes')) {
$data = unserialize($attributesOption->getValue());
$this->getUsedProductAttributeIds($product);
$usedAttributes = $this->getProduct($product)->getData($this->_usedAttributes);
foreach ($data as $attributeId => $attributeValue) {
if (isset($usedAttributes[$attributeId])) {
$attribute = $usedAttributes[$attributeId];
$label = $attribute->getLabel();
$value = $attribute->getProductAttribute();
if ($value->getSourceModel()) {
if (Mage::helper('adodis_ajaxcart')->isAjaxCartEnable() && Mage::getStoreConfig('adodis_ajaxcart/qty_settings/cart_page') && (Mage::helper('adodis_ajaxcart')->getIsCartPage() || Mage::helper('adodis_ajaxcart')->getChangeAttributeCart() || Mage::helper('adodis_ajaxcart')->getChangeQtyCart())) {
$attribute_values = $attribute->getPrices() ? $attribute->getPrices() : array();
foreach ($attribute_values as $_k => $_v) {
$attribute_values[$_k]['value'] = $_v['value_index'];
}
$select = Mage::getSingleton('core/layout')->createBlock('core/html_select')->setClass('glg_cart_attribute_' . $attributeId)->setExtraParams('onchange="AjaxCartConfig.attributeCartChange(this,' . $product->getId() . ')"')->setValue($attributeValue)->setOptions($attribute_values);
$value = $select->getHtml();
} else {
$value = $value->getSource()->getOptionText($attributeValue);
}
} else {
$value = '';
}
$attributes[] = array('label' => $label, 'value' => $value);
}
}
}
Varien_Profiler::stop('CONFIGURABLE:' . __METHOD__);
return $attributes;
}
示例7: getSelectedAttributesInfoId
/**
* Retrieve Selected Attributes info
*
* @param Mage_Catalog_Model_Product $product
* @return array
*/
public function getSelectedAttributesInfoId($product = null)
{
$attributes = array();
Varien_Profiler::start('CONFIGURABLE:' . __METHOD__);
if ($attributesOption = $this->getProduct($product)->getCustomOption('attributes')) {
$data = unserialize($attributesOption->getValue());
$this->getUsedProductAttributeIds($product);
$usedAttributes = $this->getProduct($product)->getData($this->_usedAttributes);
foreach ($data as $attributeId => $attributeValue) {
if (isset($usedAttributes[$attributeId])) {
$attribute = $usedAttributes[$attributeId];
//$label = $attribute->getLabel();
$label = $attribute->getAttributeId();
$value = $attribute->getProductAttribute();
if ($value->getSourceModel()) {
//$value = $value->getSource()->getOptionText($attributeValue);
$value = $value->getSource()->getOptionId($attributeValue);
} else {
$value = '';
}
//$attributes[] = array('label'=>$label, 'value'=>$value);
$attributes[$label] = $value;
}
}
}
Varien_Profiler::stop('CONFIGURABLE:' . __METHOD__);
return $attributes;
}
示例8: _beforeToHtml
protected function _beforeToHtml()
{
/*
if (Mage::registry('current_customer')->getId()) {
$this->addTab('view', array(
'label' => Mage::helper('customer')->__('Customer View'),
'content' => $this->getLayout()->createBlock('adminhtml/customer_edit_tab_view')->toHtml(),
'active' => true
));
}
*/
$this->addTab('account', array('label' => Mage::helper('customer')->__('Account Information'), 'content' => $this->getLayout()->createBlock('adminhtml/customer_edit_tab_account')->initForm()->toHtml(), 'active' => Mage::registry('current_customer')->getId() ? false : true));
$this->addTab('addresses', array('label' => Mage::helper('customer')->__('Addresses'), 'content' => $this->getLayout()->createBlock('adminhtml/customer_edit_tab_addresses')->initForm()->toHtml()));
// load: Orders, Shopping Cart, Wishlist, Product Reviews, Product Tags - with ajax
if (Mage::registry('current_customer')->getId()) {
if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/view')) {
$this->addTab('orders', array('label' => Mage::helper('customer')->__('Orders'), 'class' => 'ajax', 'url' => $this->getUrl('*/*/orders', array('_current' => true))));
}
$this->addTab('cart', array('label' => Mage::helper('customer')->__('Shopping Cart'), 'class' => 'ajax', 'url' => $this->getUrl('*/*/carts', array('_current' => true))));
$this->addTab('wishlist', array('label' => Mage::helper('customer')->__('Wishlist'), 'class' => 'ajax', 'url' => $this->getUrl('*/*/wishlist', array('_current' => true))));
if (Mage::getSingleton('admin/session')->isAllowed('newsletter/subscriber')) {
$this->addTab('newsletter', array('label' => Mage::helper('customer')->__('Newsletter'), 'content' => $this->getLayout()->createBlock('adminhtml/customer_edit_tab_newsletter')->initForm()->toHtml()));
}
if (Mage::getSingleton('admin/session')->isAllowed('catalog/reviews_ratings')) {
$this->addTab('reviews', array('label' => Mage::helper('customer')->__('Product Reviews'), 'class' => 'ajax', 'url' => $this->getUrl('*/*/productReviews', array('_current' => true))));
}
if (Mage::getSingleton('admin/session')->isAllowed('catalog/tag')) {
$this->addTab('tags', array('label' => Mage::helper('customer')->__('Product Tags'), 'class' => 'ajax', 'url' => $this->getUrl('*/*/productTags', array('_current' => true))));
}
}
$this->_updateActiveTab();
Varien_Profiler::stop('customer/tabs');
return parent::_beforeToHtml();
}
示例9: handleInlineJs
/**
* @param Varien_Event_Observer $observer
*
* @return $this
*/
public function handleInlineJs(Varien_Event_Observer $observer)
{
Varien_Profiler::start('MeanbeeFooterJs');
/** @var Meanbee_Footerjs_Helper_Data $helper */
$helper = Mage::helper('meanbee_footerjs');
if (!$helper->isEnabled()) {
return $this;
}
/** @var Mage_Core_Block_Abstract $block */
$block = $observer->getBlock();
if (!is_null($block->getParentBlock())) {
// Only look for JS at the root block
return $this;
}
/** @var Varien_Object $transport */
$transport = $observer->getTransport();
$patterns = array('js' => self::REGEX_JS, 'document_end' => self::REGEX_DOCUMENT_END);
foreach ($patterns as $pattern) {
$matches = array();
$html = $transport->getHtml();
$success = preg_match_all($pattern, $html, $matches);
if ($success) {
$text = implode('', $matches[0]);
$html = preg_replace($pattern, '', $html);
$transport->setHtml($html . $text);
}
}
Varien_Profiler::stop('MeanbeeFooterJs');
return $this;
}
示例10: getRegionJson
/**
* Retrieve regions data json
*
* @return string
*/
public function getRegionJson()
{
Varien_Profiler::start('TEST: ' . __METHOD__);
if (!$this->_regionJson) {
$cacheKey = 'DIRECTORY_REGIONS_JSON_STORE' . Mage::app()->getStore()->getId();
if (Mage::app()->useCache('config')) {
$json = Mage::app()->loadCache($cacheKey);
}
if (empty($json)) {
$countryIds = array();
foreach ($this->getCountryCollection() as $country) {
$countryIds[] = $country->getCountryId();
}
$collection = Mage::getModel('directory/region')->getResourceCollection()->addCountryFilter($countryIds)->load();
$regions = array();
foreach ($collection as $region) {
if (!$region->getRegionId()) {
continue;
}
$regions[$region->getCountryId()][$region->getRegionId()] = array('code' => $region->getCode(), 'name' => $region->getName());
}
$json = Mage::helper('core')->jsonEncode($regions);
if (Mage::app()->useCache('config')) {
Mage::app()->saveCache($json, $cacheKey, array('config'));
}
}
$this->_regionJson = $json;
}
Varien_Profiler::stop('TEST: ' . __METHOD__);
return $this->_regionJson;
}
示例11: handleInlineJs
/**
* @param Varien_Event_Observer $observer
*
* @return $this
*/
public function handleInlineJs(Varien_Event_Observer $observer)
{
Varien_Profiler::start('MeanbeeFooterJs');
/** @var Meanbee_Footerjs_Helper_Data $helper */
$helper = Mage::helper('meanbee_footerjs');
if (!$helper->isEnabled()) {
return $this;
}
/** @var Mage_Core_Controller_Response_Http $response */
$response = $observer->getResponse();
if (!$response->getBody()) {
// No further action if no body, e.g. redirect
return $this;
}
$patterns = array('js' => self::REGEX_JS, 'document_end' => self::REGEX_DOCUMENT_END);
foreach ($patterns as $pattern) {
$matches = array();
$html = $response->getBody();
$success = preg_match_all($pattern, $html, $matches);
if ($success) {
$text = implode('', $matches[0]);
$html = preg_replace($pattern, '', $html);
$response->setBody($html . $text);
}
}
Varien_Profiler::stop('MeanbeeFooterJs');
return $this;
}
示例12: minifyFile
/**
* Minify the data
*
* @param string $path Path to read-write the data to.
* @param string $type Content-Type
*/
public function minifyFile($path, $type)
{
Varien_Profiler::start('minify_file_' . $path);
$minifier = $this->getMinifier($path, $type);
$minifier->minify($path . '.min');
Varien_Profiler::stop('minify_file_' . $path);
}
示例13: _toHtml
/**
* Prepare html output
*
* @return string
*/
protected function _toHtml()
{
// Start store emulation process
// Since the Transactional Email preview process has no mechanism for selecting a store view to use for
// previewing, use the default store view
$defaultStoreId = Mage::app()->getDefaultStoreView()->getId();
$appEmulation = Mage::getSingleton('core/app_emulation');
$initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($defaultStoreId);
/** @var $template Mage_Core_Model_Email_Template */
$template = Mage::getModel('core/email_template');
$id = (int) $this->getRequest()->getParam('id');
if ($id) {
$template->load($id);
} else {
$template->setTemplateType($this->getRequest()->getParam('type'));
$template->setTemplateText($this->getRequest()->getParam('text'));
$template->setTemplateStyles($this->getRequest()->getParam('styles'));
}
/* @var $filter Mage_Core_Model_Input_Filter_MaliciousCode */
$filter = Mage::getSingleton('core/input_filter_maliciousCode');
$template->setTemplateText($filter->filter($template->getTemplateText()));
Varien_Profiler::start("email_template_proccessing");
$vars = array();
$templateProcessed = $template->getProcessedTemplate($vars, true);
if ($template->isPlain()) {
$templateProcessed = "<pre>" . htmlspecialchars($templateProcessed) . "</pre>";
}
Varien_Profiler::stop("email_template_proccessing");
// Stop store emulation process
$appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
return $templateProcessed;
}
示例14: _toHtml
protected function _toHtml()
{
/* @var $template Mage_Newsletter_Model_Template */
$template = Mage::getModel('newsletter/template');
if ($id = (int) $this->getRequest()->getParam('id')) {
$queue = Mage::getModel('newsletter/queue');
$queue->load($id);
$template->setTemplateType($queue->getNewsletterType());
$template->setTemplateText($queue->getNewsletterText());
$template->setTemplateStyles($queue->getNewsletterStyles());
} else {
$template->setTemplateType($this->getRequest()->getParam('type'));
$template->setTemplateText($this->getRequest()->getParam('text'));
$template->setTemplateStyles($this->getRequest()->getParam('styles'));
}
$storeId = (int) $this->getRequest()->getParam('store_id');
if (!$storeId) {
$storeId = Mage::app()->getAnyStoreView()->getId();
}
Varien_Profiler::start("newsletter_queue_proccessing");
$vars = array();
$vars['subscriber'] = Mage::getModel('newsletter/subscriber');
$template->emulateDesign($storeId);
$templateProcessed = $template->getProcessedTemplate($vars, true);
$template->revertDesign();
if ($template->isPlain()) {
$templateProcessed = "<pre>" . htmlspecialchars($templateProcessed) . "</pre>";
}
Varien_Profiler::stop("newsletter_queue_proccessing");
return $templateProcessed;
}
示例15: calculatePrice
/**
* Calculate product price based on special price data and price rules
*
* @param float $basePrice
* @param float $specialPrice
* @param string $specialPriceFrom
* @param string $specialPriceTo
* @param float|null|false $rulePrice
* @param mixed $wId
* @param mixed $gId
* @param null|int $productId
* @return float
*/
public static function calculatePrice($basePrice, $specialPrice, $specialPriceFrom, $specialPriceTo, $rulePrice = false, $wId = null, $gId = null, $productId = null)
{
Varien_Profiler::start('__PRODUCT_CALCULATE_PRICE__');
if ($wId instanceof Mage_Core_Model_Store) {
$sId = $wId->getId();
$wId = $wId->getWebsiteId();
} else {
$sId = Mage::app()->getWebsite($wId)->getDefaultGroup()->getDefaultStoreId();
}
$finalPrice = $basePrice;
if ($gId instanceof Mage_Customer_Model_Group) {
$gId = $gId->getId();
}
$finalPrice = self::calculateSpecialPrice($finalPrice, $specialPrice, $specialPriceFrom, $specialPriceTo, $sId);
if ($rulePrice === false) {
$storeTimestamp = Mage::app()->getLocale()->storeTimeStamp($sId);
$rulePrice = Mage::getResourceModel('catalogrule/rule')->getRulePrice($storeTimestamp, $wId, $gId, $productId);
}
if ($rulePrice !== null && $rulePrice !== false) {
// THIS LINE WAS CHANGED
$finalPrice = $rulePrice;
}
$finalPrice = max($finalPrice, 0);
Varien_Profiler::stop('__PRODUCT_CALCULATE_PRICE__');
return $finalPrice;
}