本文整理汇总了PHP中oxRegistry类的典型用法代码示例。如果您正苦于以下问题:PHP oxRegistry类的具体用法?PHP oxRegistry怎么用?PHP oxRegistry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了oxRegistry类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: _getQuery
/**
* Returns SQL query for data to fetc
*
* @return string
*/
protected function _getQuery()
{
// looking for table/view
$sArtTable = $this->_getViewName('oxarticles');
$sO2CView = $this->_getViewName('oxobject2category');
$oDb = oxDb::getDb();
$oConfig = oxRegistry::getConfig();
$sVendorId = $oConfig->getRequestParameter('oxid');
$sSynchVendorId = $oConfig->getRequestParameter('synchoxid');
// vendor selected or not ?
if (!$sVendorId) {
$sQAdd = ' from ' . $sArtTable . ' where ' . $sArtTable . '.oxshopid="' . $oConfig->getShopId() . '" and 1 ';
$sQAdd .= $oConfig->getConfigParam('blVariantsSelection') ? '' : " and {$sArtTable}.oxparentid = '' and {$sArtTable}.oxvendorid != " . $oDb->quote($sSynchVendorId);
} else {
// selected category ?
if ($sSynchVendorId && $sSynchVendorId != $sVendorId) {
$sQAdd = " from {$sO2CView} left join {$sArtTable} on ";
$sQAdd .= $oConfig->getConfigParam('blVariantsSelection') ? " ( {$sArtTable}.oxid = {$sO2CView}.oxobjectid or {$sArtTable}.oxparentid = oxobject2category.oxobjectid )" : " {$sArtTable}.oxid = {$sO2CView}.oxobjectid ";
$sQAdd .= 'where ' . $sArtTable . '.oxshopid="' . $oConfig->getShopId() . '" and ' . $sO2CView . '.oxcatnid = ' . $oDb->quote($sVendorId) . ' and ' . $sArtTable . '.oxvendorid != ' . $oDb->quote($sSynchVendorId);
} else {
$sQAdd = " from {$sArtTable} where {$sArtTable}.oxvendorid = " . $oDb->quote($sVendorId);
}
$sQAdd .= $oConfig->getConfigParam('blVariantsSelection') ? '' : " and {$sArtTable}.oxparentid = '' ";
}
return $sQAdd;
}
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:31,代码来源:vendor_main_ajax.php
示例2: _prepareWhereQuery
/**
* Adds active promotion check
*
* @param array $aWhere SQL condition array
* @param string $sqlFull SQL query string
*
* @return $sQ
*/
protected function _prepareWhereQuery($aWhere, $sqlFull)
{
$sQ = parent::_prepareWhereQuery($aWhere, $sqlFull);
$sDisplayType = (int) oxRegistry::getConfig()->getRequestParameter('displaytype');
$sTable = getViewName("oxactions");
//searchong for empty oxfolder fields
if ($sDisplayType) {
$sNow = date('Y-m-d H:i:s', oxRegistry::get("oxUtilsDate")->getTime());
switch ($sDisplayType) {
case 1:
// active
$sQ .= " and {$sTable}.oxactivefrom < '{$sNow}' and {$sTable}.oxactiveto > '{$sNow}' ";
break;
case 2:
// upcoming
$sQ .= " and {$sTable}.oxactivefrom > '{$sNow}' ";
break;
case 3:
// expired
$sQ .= " and {$sTable}.oxactiveto < '{$sNow}' and {$sTable}.oxactiveto != '0000-00-00 00:00:00' ";
break;
}
}
return $sQ;
}
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:33,代码来源:actions_list.php
示例3: render
/**
* Collects article crosselling and attributes information, passes
* them to Smarty engine and returns name or template file
* "article_crossselling.tpl".
*
* @return string
*/
public function render()
{
parent::render();
$this->_aViewData['edit'] = $oArticle = oxNew('oxarticle');
// crossselling
$this->_createCategoryTree("artcattree");
// accessoires
$this->_createCategoryTree("artcattree2");
$soxId = $this->getEditObjectId();
if ($soxId != "-1" && isset($soxId)) {
// load object
$oArticle->load($soxId);
if ($oArticle->isDerived()) {
$this->_aViewData['readonly'] = true;
}
}
$iAoc = oxRegistry::getConfig()->getRequestParameter("aoc");
if ($iAoc == 1) {
$oArticleCrossellingAjax = oxNew('article_crossselling_ajax');
$this->_aViewData['oxajax'] = $oArticleCrossellingAjax->getColumns();
return "popups/article_crossselling.tpl";
} elseif ($iAoc == 2) {
$oArticleAccessoriesAjax = oxNew('article_accessories_ajax');
$this->_aViewData['oxajax'] = $oArticleAccessoriesAjax->getColumns();
return "popups/article_accessories.tpl";
}
return "article_crossselling.tpl";
}
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:35,代码来源:article_crossselling.php
示例4: render
/**
* Executes parent method parent::render(), creates deliveryset category tree,
* passes data to Smarty engine and returns name of template file "deliveryset_main.tpl".
*
* @return string
*/
public function render()
{
$myConfig = $this->getConfig();
$sTheme = $this->_sTheme = $this->getEditObjectId();
$sShopId = $myConfig->getShopId();
if (!isset($sTheme)) {
$sTheme = $this->_sTheme = $this->getConfig()->getConfigParam('sTheme');
}
$oTheme = oxNew('oxTheme');
if ($oTheme->load($sTheme)) {
$this->_aViewData["oTheme"] = $oTheme;
try {
$aDbVariables = $this->loadConfVars($sShopId, $this->_getModuleForConfigVars());
$this->_aViewData["var_constraints"] = $aDbVariables['constraints'];
$this->_aViewData["var_grouping"] = $aDbVariables['grouping'];
foreach ($this->_aConfParams as $sType => $sParam) {
$this->_aViewData[$sParam] = $aDbVariables['vars'][$sType];
}
} catch (oxException $oEx) {
oxRegistry::get("oxUtilsView")->addErrorToDisplay($oEx);
$oEx->debugOut();
}
} else {
oxRegistry::get("oxUtilsView")->addErrorToDisplay(oxNew("oxException", 'EXCEPTION_THEME_NOT_LOADED'));
}
return 'theme_config.tpl';
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:33,代码来源:theme_config.php
示例5: smarty_insert_oxid_nocache
/**
* Smarty plugin
* -------------------------------------------------------------
* File: insert.oxid_nocache.php
* Type: string, html
* Name: oxid_nocache
* Purpose: Inserts Items not cached
* -------------------------------------------------------------
*
* @param array $params params
* @param Smarty &$smarty clever simulation of a method
*
* @return string
*/
function smarty_insert_oxid_nocache($params, &$smarty)
{
$myConfig = oxRegistry::getConfig();
$smarty->caching = false;
/* if( isset( $smarty->oxobject->oProduct))
$smarty->assign_by_ref( "product", $smarty->oxobject->oProduct);*/
// #1184M - specialchar search
$sSearchParamForHTML = oxRegistry::getConfig()->getRequestParameter("searchparam");
$sSearchParamForLink = rawurlencode(oxRegistry::getConfig()->getRequestParameter("searchparam", true));
if ($sSearchParamForHTML) {
$smarty->assign_by_ref("searchparamforhtml", $sSearchParamForHTML);
$smarty->assign_by_ref("searchparam", $sSearchParamForLink);
}
$sSearchCat = oxRegistry::getConfig()->getRequestParameter("searchcnid");
if ($sSearchCat) {
$smarty->assign_by_ref("searchcnid", rawurldecode($sSearchCat));
}
foreach (array_keys($params) as $key) {
$viewData =& $params[$key];
$smarty->assign_by_ref($key, $viewData);
}
$sOutput = $smarty->fetch($params['tpl']);
$smarty->caching = false;
return $sOutput;
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:39,代码来源:insert.oxid_nocache.php
示例6: addSel
/**
* Adds selection lists to article.
*/
public function addSel()
{
$aAddSel = $this->_getActionIds('oxselectlist.oxid');
$soxId = oxRegistry::getConfig()->getRequestParameter('synchoxid');
// adding
if (oxRegistry::getConfig()->getRequestParameter('all')) {
$sSLViewName = $this->_getViewName('oxselectlist');
$aAddSel = $this->_getAll($this->_addFilter("select {$sSLViewName}.oxid " . $this->_getQuery()));
}
if ($soxId && $soxId != "-1" && is_array($aAddSel)) {
$oDb = oxDb::getDb();
foreach ($aAddSel as $sAdd) {
$oNew = oxNew("oxbase");
$oNew->init("oxobject2selectlist");
$sObjectIdField = 'oxobject2selectlist__oxobjectid';
$sSelectetionIdField = 'oxobject2selectlist__oxselnid';
$sOxSortField = 'oxobject2selectlist__oxsort';
$oNew->{$sObjectIdField} = new oxField($soxId);
$oNew->{$sSelectetionIdField} = new oxField($sAdd);
$sSql = "select max(oxsort) + 1 from oxobject2selectlist where oxobjectid = {$oDb->quote($soxId)} ";
$oNew->{$sOxSortField} = new oxField((int) $oDb->getOne($sSql, false, false));
$oNew->save();
}
}
}
开发者ID:mibexx,项目名称:oxid_yttutorials,代码行数:28,代码来源:article_selection_ajax.php
示例7: onActivate
/**
* Setup routine
*/
public static function onActivate()
{
if (class_exists('oxRegistry')) {
$myConfig = oxRegistry::getConfig();
} else {
$myConfig = oxConfig::getInstance()->getConfig();
}
$bIsEE = $myConfig->getEdition() === "EE";
try {
$db = oxDb::getDb();
// create oxjson groups
if ($bIsEE) {
$maxRRId = intval($db->getOne("select MAX(OXRRID) from oxgroups"));
$nextRRId = $maxRRId + 1;
$sQ = "INSERT IGNORE INTO oxgroups (OXID, OXACTIVE, OXTITLE, OXTITLE_1, OXRRID) VALUES ('oxjsonro', '1', 'OXJSON Read-only', 'OXJSON Read-only', '{$nextRRId}');";
$db->Execute($sQ);
$nextRRId++;
$sQ = "INSERT IGNORE INTO oxgroups (OXID, OXACTIVE, OXTITLE, OXTITLE_1, OXRRID) VALUES ('oxjsonfull', '1', 'OXJSON Full', 'OXJSON Full', '{$nextRRId}');";
$db->Execute($sQ);
} else {
$sQ = "INSERT IGNORE INTO oxgroups (OXID, OXACTIVE, OXTITLE, OXTITLE_1) VALUES ('oxjsonro', '1', 'OXJSON Read-only', 'OXJSON Read-only');";
$db->Execute($sQ);
$nextRRId++;
$sQ = "INSERT IGNORE INTO oxgroups (OXID, OXACTIVE, OXTITLE, OXTITLE_1) VALUES ('oxjsonfull', '1', 'OXJSON Full', 'OXJSON Full');";
$db->Execute($sQ);
}
} catch (Exception $ex) {
error_log("Error activating module: " . $ex->getMessage());
}
}
开发者ID:rahsm,项目名称:oxidjson,代码行数:33,代码来源:oxjson_setup.php
示例8: runAsserts
/**
* Runs all asserts
*
* @param array $aExpectedResult
*/
protected function runAsserts($aExpectedResult)
{
$oConfig = oxRegistry::getConfig();
$oValidator = new Validator($oConfig);
if (isset($aExpectedResult['blocks'])) {
$this->assertTrue($oValidator->checkBlocks($aExpectedResult['blocks']), 'Blocks do not match expectations');
}
if (isset($aExpectedResult['extend'])) {
$this->assertTrue($oValidator->checkExtensions($aExpectedResult['extend']), 'Extensions do not match expectations');
}
if (isset($aExpectedResult['files'])) {
$this->assertTrue($oValidator->checkFiles($aExpectedResult['files']), 'Files do not match expectations');
}
if (isset($aExpectedResult['events'])) {
$this->assertTrue($oValidator->checkEvents($aExpectedResult['events']), 'Events do not match expectations');
}
if (isset($aExpectedResult['settings'])) {
$this->assertTrue($oValidator->checkConfigAmount($aExpectedResult['settings']), 'Configs do not match expectations');
}
if (isset($aExpectedResult['versions'])) {
$this->assertTrue($oValidator->checkVersions($aExpectedResult['versions']), 'Versions do not match expectations');
}
if (isset($aExpectedResult['templates'])) {
$this->assertTrue($oValidator->checkTemplates($aExpectedResult['templates']), 'Templates do not match expectations');
}
if (isset($aExpectedResult['disabledModules'])) {
$this->assertTrue($oValidator->checkDisabledModules($aExpectedResult['disabledModules']), 'Disabled modules do not match expectations');
}
if (isset($aExpectedResult['settings_values'])) {
$this->assertTrue($oValidator->checkConfigValues($aExpectedResult['settings_values']), 'Config values does not match expectations');
}
}
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:37,代码来源:basemoduleTestCase.php
示例9: smarty_function_newestCategoryArticles
function smarty_function_newestCategoryArticles($params, &$smarty)
{
// default values
$oxid = $params['oxid'] ? $params['oxid'] : oxRegistry::getConfig()->getRequestParameter('cnid');
$am = $params['amount'] ? $params['amount'] : null;
$head = $params['head'] ? $params['head'] : "vtnca_newestarticles";
$file = $params['file'] ? $params['file'] : "widget/product/boxproducts.tpl";
//_oBoxProducts=$oView->getTop5ArticleList() _sHeaderIdent="TOP_OF_THE_SHOP"}]
if (!$oxid) {
return "<!-- vt-nca: no category id given -->";
}
// exit if no oxID given
// getting newest category articles
$oArtList = oxNew('oxarticlelist');
$oArtList->loadNewestCategoryArticles($oxid, $am);
if (!$oArtList->count()) {
return;
}
// exit if no products in category
if ($params['assign']) {
$smarty->assign($params['assign'], $oArtList);
return;
}
// for default boxproducts
$smarty->assign("_sHeaderIdent", $head);
$smarty->assign("_oBoxProducts", $oArtList);
// for stabdard list.tpl
$smarty->assign("head", $head);
$smarty->assign("products", $oArtList);
$html = $smarty->fetch($file);
//$smarty->clear_assign("__nca_".$oxid);
return $html;
}
开发者ID:oligoform,项目名称:vt-nca,代码行数:33,代码来源:oxutilsview_nca.php
示例10: _doStartUpChecks
/**
* Extends the startup checks with Barzahlen plugin version check.
*
* @return array
*/
protected function _doStartUpChecks()
{
$aMessage = parent::_doStartUpChecks();
$oxConfig = $this->getConfig();
$sShopId = $oxConfig->getShopId();
$sModule = oxConfig::OXMODULE_MODULE_PREFIX . $this->_sModuleId;
$sPluginCheck = $oxConfig->getShopConfVar('bzPluginCheck', $sShopId, $sModule);
// only check once a week
if ($sPluginCheck != null && $sPluginCheck > strtotime("-1 week")) {
return $aMessage;
}
$oxConfig->saveShopConfVar('str', 'bzPluginCheck', time(), $sShopId, $sModule);
$sBzShopId = $oxConfig->getShopConfVar('bzShopId', $sShopId, $sModule);
$sShopsystem = 'OXID 4.7/5.0';
$sShopsystemVersion = $oxConfig->getVersion();
$sPluginVersion = self::CURRENTVERSION;
try {
$oChecker = new Barzahlen_Version_Check();
$newAvailable = $oChecker->isNewVersionAvailable($sBzShopId, $sShopsystem, $sShopsystemVersion, $sPluginVersion);
} catch (Exception $e) {
oxRegistry::getUtils()->writeToLog(date('c') . " " . $e . "\r\r", self::LOGFILE);
}
if ($newAvailable) {
$aMessage['warning'] .= (!empty($aMessage['warning']) ? "<br>" : '') . sprintf(oxRegistry::getLang()->translateString('BZ__NEW_PLUGIN_AVAILABLE'), $oChecker->getNewPluginVersion(), $oChecker->getNewPluginUrl());
}
return $aMessage;
}
开发者ID:alexschwarz89,项目名称:Barzahlen-OXID-4.7,代码行数:32,代码来源:bz_barzahlen_navigation.php
示例11: smarty_insert_oxid_newbasketitem
/**
* Smarty plugin
* -------------------------------------------------------------
* File: insert.oxid_newbasketitem.php
* Type: string, html
* Name: newbasketitem
* Purpose: Used for tracking in econda, etracker etc.
* -------------------------------------------------------------
*
* @param array $params params
* @param Smarty &$smarty clever simulation of a method
*
* @return string
*/
function smarty_insert_oxid_newbasketitem($params, &$smarty)
{
$myConfig = oxRegistry::getConfig();
$aTypes = array('0' => 'none', '1' => 'message', '2' => 'popup', '3' => 'basket');
$iType = $myConfig->getConfigParam('iNewBasketItemMessage');
// If corect type of message is expected
if ($iType && $params['type'] && $params['type'] != $aTypes[$iType]) {
return '';
}
//name of template file where is stored message text
$sTemplate = $params['tpl'] ? $params['tpl'] : 'inc_newbasketitem.snippet.tpl';
//allways render for ajaxstyle popup
$blRender = $params['ajax'] && $iType == 2;
//fetching article data
$oNewItem = oxRegistry::getSession()->getVariable('_newitem');
$oBasket = oxRegistry::getSession()->getBasket();
if ($oNewItem) {
// loading article object here because on some system passing article by session couses problems
$oNewItem->oArticle = oxNew('oxarticle');
$oNewItem->oArticle->Load($oNewItem->sId);
// passing variable to template with unique name
$smarty->assign('_newitem', $oNewItem);
// deleting article object data
oxRegistry::getSession()->deleteVariable('_newitem');
$blRender = true;
}
// returning generated message content
if ($blRender) {
return $smarty->fetch($sTemplate);
}
}
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:45,代码来源:insert.oxid_newbasketitem.php
示例12: PfandArtikelID
/**
* Vergibt eine ArtikelID für den Pfandartikel und schreibt den Pfandpreis in die DB
*/
protected function PfandArtikelID($price)
{
/* $oxLang = oxLang::getInstance(); */
// bis CE 4.8.9
$oxLang = oxRegistry::getLang();
// ab CE 4.9.0
$title = $oxLang->translateString('VTEC_PFAND', 0);
/* $vtec_mwst = oxConfig::getInstance()->getConfigParam('vtec_pfand_mwst'); */
// bis CE 4.8.9
$vtec_mwst = oxRegistry::getConfig()->getConfigParam('vtec_pfand_mwst');
// ab CE 4.9.0
$sSelect = "SELECT oxid FROM oxarticles WHERE oxtitle = '" . $title . "' AND oxprice = '" . $price . "' LIMIT 1";
$qResult = oxDb::getDb(ADODB_FETCH_ASSOC)->getOne($sSelect);
if ($qResult == false || $qResult == null) {
$oArticle = oxNew("oxarticle");
$aLangs = $oxLang->getLanguageIds();
$oArticle->assign(array('oxarticles__active' => 1, 'oxarticles__oxissearch' => 0, 'oxarticles__oxprice' => $price, 'oxarticles__oxpricea' => $price, 'oxarticles__oxpriceb' => $price, 'oxarticels__oxpricec' => $price, 'oxarticles__oxpic1' => 'pfand.jpg', 'oxarticles__oxvat' => $vtec_mwst));
$oArticle->save();
//foreach ($aLangs as $iLang){
for ($i = 0; $i < count($aLangs); $i++) {
$oArticle->setLanguage($i);
$oArticle->assign(array("oxarticles__oxtitle" => $oxLang->translateString('VTEC_PFAND', $i)));
$oArticle->save();
}
$qResult = $oArticle->oxarticles__oxid->value;
}
return $qResult;
}
开发者ID:Themroc,项目名称:VTEC_Pfand,代码行数:31,代码来源:vtec_oxbasket.php
示例13: save
/**
* Saves news text.
*
* @return mixed
*/
public function save()
{
parent::save();
$soxId = $this->getEditObjectId();
$aParams = oxRegistry::getConfig()->getRequestParameter("editval");
$oNews = oxNew("oxnews");
$iNewsLang = oxRegistry::getConfig()->getRequestParameter("newslang");
if (!isset($iNewsLang)) {
$iNewsLang = $this->_iEditLang;
}
if ($soxId != "-1") {
$oNews->loadInLang($iNewsLang, $soxId);
} else {
$aParams['oxnews__oxid'] = null;
}
// Disable editing for derived items.
if ($oNews->isDerived()) {
return;
}
$oNews->setLanguage(0);
$oNews->assign($aParams);
$oNews->setLanguage($iNewsLang);
$oNews->save();
// set oxid if inserted
$this->setEditObjectId($oNews->getId());
}
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:31,代码来源:news_text.php
示例14: save
/**
* Saves changed shop configuration parameters.
*/
public function save()
{
$myConfig = $this->getConfig();
$sOxId = $this->getEditObjectId();
// base parameters
$aConfStrs = oxRegistry::getConfig()->getRequestParameter("confstrs");
$aConfAArs = oxRegistry::getConfig()->getRequestParameter("confaarrs");
$aConfBools = oxRegistry::getConfig()->getRequestParameter("confbools");
// validating language Ids
if (is_array($aConfAArs['aTsLangIds'])) {
$blActive = isset($aConfBools["blTsWidget"]) && $aConfBools["blTsWidget"] == "true" ? true : false;
$sPkg = "OXID_ESALES";
$aActiveLangs = array();
foreach ($aConfAArs['aTsLangIds'] as $sLangId => $sId) {
$aActiveLangs[$sLangId] = false;
if ($sId) {
$sTsUser = $myConfig->getConfigParam('sTsUser');
$sTsPass = $myConfig->getConfigParam('sTsPass');
// validating and switching on/off
$sResult = $this->_validateId($sId, (bool) $blActive, $sTsUser, $sTsPass, $sPkg);
// keeping activation state
$aActiveLangs[$sLangId] = $sResult == "OK" ? true : false;
// error message
if ($sResult && $sResult != "OK") {
$this->_aViewData["errorsaving"] = "DYN_TRUSTED_RATINGS_ERR_{$sResult}";
}
}
}
$myConfig->saveShopConfVar("arr", "aTsActiveLangIds", $aActiveLangs, $sOxId);
}
parent::save();
}
开发者ID:Crease29,项目名称:oxideshop_ce,代码行数:35,代码来源:dyn_trusted_ratings.php
示例15: onDeactivate
/**
* Is called on module deactivation. Deletes the theme settings. Note that after deactivation the settings
* will be lost.
*/
public static function onDeactivate()
{
$iShopId = oxRegistry::getConfig()->getShopId();
$sThemeName = self::_getThemeName();
$sDeleteSQL = "\n DELETE\n oxconfig.*,\n oxconfigdisplay.*\n FROM `oxconfig`\n LEFT JOIN `oxconfigdisplay`\n ON ( `oxconfig`.`OXID` = `oxconfigdisplay`.`OXID` )\n WHERE `oxconfig`.`OXMODULE` = ? AND `oxconfig`.`oxshopid` = ?\n ";
oxDb::getDb()->Execute($sDeleteSQL, array('theme:' . $sThemeName, $iShopId));
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:11,代码来源:oethemeswitcherevents.php
示例16: render
/**
* Executes parent method parent::render(), creates deliveryset category tree,
* passes data to Smarty engine and returns name of template file "deliveryset_main.tpl".
*
* @return string
*/
public function render()
{
$myConfig = $this->getConfig();
$sModuleId = $this->_sModuleId = $this->getEditObjectId();
$sShopId = $myConfig->getShopId();
$oModule = oxNew('oxModule');
if ($sModuleId && $oModule->load($sModuleId)) {
try {
$aDbVariables = $this->_loadMetadataConfVars($oModule->getInfo("settings"));
$this->_aViewData["var_constraints"] = $aDbVariables['constraints'];
$this->_aViewData["var_grouping"] = $aDbVariables['grouping'];
$iCount = 0;
foreach ($this->_aConfParams as $sType => $sParam) {
$this->_aViewData[$sParam] = $aDbVariables['vars'][$sType];
$iCount += count($aDbVariables['vars'][$sType]);
}
} catch (oxException $oEx) {
oxRegistry::get("oxUtilsView")->addErrorToDisplay($oEx);
$oEx->debugOut();
}
} else {
oxRegistry::get("oxUtilsView")->addErrorToDisplay(new oxException('EXCEPTION_MODULE_NOT_LOADED'));
}
$this->_aViewData["oModule"] = $oModule;
return 'module_config.tpl';
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:32,代码来源:module_config.php
示例17: _getStrHandler
/**
* Non static getter returning str handler. The sense of getStr() and _getStrHandler() is
* to be possible to call this method statically ( oxStr::getStr() ), yet leaving the
* possibility to extend it in modules by overriding _getStrHandler() method.
*
* @return object
*/
protected function _getStrHandler()
{
if (oxRegistry::getConfig()->isUtf() && function_exists('mb_strlen')) {
return oxNew("oxStrMb");
}
return oxNew("oxStrRegular");
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:14,代码来源:oxstr.php
示例18: setLangCache
public function setLangCache($sCacheName, $aLangCache)
{
if (oxRegistry::getConfig()->getConfigParam("bl_VtDev_disableLangCache")) {
return true;
}
return parent::setLangCache($sCacheName, $aLangCache);
}
开发者ID:kermie,项目名称:vt-devutils,代码行数:7,代码来源:vt_dev_oxutils.php
示例19: __call
/**
* Magic call method making a default workflow call to Paymorrow API.
*
* @param string $sMethodName
* @param array $aArguments
*
* @return array
*/
public function __call($sMethodName, $aArguments)
{
// Get all gateway related instances: client, data provider and response, handler
/** @var OxpsOxid2Paymorrow $oOxidToPm */
$oOxidToPm = oxNew('OxpsOxid2Paymorrow');
/** @var OxpsPaymorrowClient|PaymorrowClient $oClient */
$oClient = $this->getPmClient();
/** @var OxpsPaymorrowEshopDataProvider $oDataProvider */
$oDataProvider = $oOxidToPm->getEshopDataProvider();
/** @var OxpsPaymorrowResponseHandler $oResponseHandler */
$oResponseHandler = oxRegistry::get('OxpsPaymorrowResponseHandler');
// Set method URL
$oClient->setEndPoint($this->getEndPointUrl() . $sMethodName);
// Collect auth data and perform a request
$aResponseData = $oClient->sendRequest(array_merge($oDataProvider->collectCommonData(), (array) reset($aArguments)));
// Check it response is OK or an error
if (isset($aResponseData['response_status']) and $aResponseData['response_status'] === 'OK') {
$sResponseHandlerMethodFormat = 'handle%sResponseOK';
} else {
$sResponseHandlerMethodFormat = 'handle%sResponseError';
}
// Call the response handler method
$sResponseHandlerMethod = sprintf($sResponseHandlerMethodFormat, ucfirst($sMethodName));
$oResponseHandler->{$sResponseHandlerMethod}($aResponseData);
// Return formatted response data
return $this->prepareResponseData($aResponseData);
}
开发者ID:ioanok,项目名称:symfoxid,代码行数:35,代码来源:oxpspaymorrowgateway.php
示例20: cleanup
public static function cleanup()
{
$oDb = oxDb::getDb();
$sShopId = oxRegistry::getConfig()->getShopId();
$sQuery = "DELETE FROM `oxseo` WHERE `OXSTDURL` LIKE '%StylaSEO_Output%' and oxshopid = " . $oDb->quote($sShopId) . " ;";
$oDb->Execute($sQuery);
}
开发者ID:styladev,项目名称:oxid,代码行数:7,代码来源:StylaSEO_Setup.php
注:本文中的oxRegistry类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论