Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ultimate SEO Url Pro language box on header


Guest

Recommended Posts

Hello,

I installed Ultimate SEO Url Pro and got also the new language box file included in the installation directory.

However, I would like to move the box to the header, the problem is that the code is a little different from the standard language box

 

Thanks a lot in advance

 

 

<?php
/*
 $Id: bm_languages.php 189 2010-12-01 14:16:21Z Rob $
 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com
 Copyright (c) 2010 osCommerce
 Released under the GNU General Public License
*/
 class bm_languages {
var $code = 'bm_languages';
var $group = 'boxes';
var $title;
var $description;
var $sort_order;
var $enabled = false;
function bm_languages() {
  $this->title = MODULE_BOXES_LANGUAGES_TITLE;
  $this->description = MODULE_BOXES_LANGUAGES_DESCRIPTION;
  if ( defined('MODULE_BOXES_LANGUAGES_STATUS') ) {
	$this->sort_order = MODULE_BOXES_LANGUAGES_SORT_ORDER;
	$this->enabled = (MODULE_BOXES_LANGUAGES_STATUS == 'True');
	$this->group = ((MODULE_BOXES_LANGUAGES_CONTENT_PLACEMENT == 'Left Column') ? 'boxes_column_left' : 'boxes_column_right');
  }
}
function execute() {
  global $PHP_SELF, $lng, $request_type, $oscTemplate, $language;
  if (substr(basename($PHP_SELF), 0, 8) != 'checkout') {
	if (!isset($lng) || (isset($lng) && !is_object($lng))) {
	  include(DIR_WS_CLASSES . 'language.php');
	  $lng = new language;
	}
	if (count($lng->catalog_languages) > 1) {
	  $languages_string = '';
	  reset($lng->catalog_languages);
	  foreach( $lng->catalog_languages as $key => $value ) {
		if ( $value['directory'] == $language ) {
		  $current_lang_key = $key;
		  break;
		}
	  }
	  reset($lng->catalog_languages);
	  $home_page_redirect = defined( 'USU5_HOME_PAGE_REDIRECT' ) && ( USU5_HOME_PAGE_REDIRECT == 'true' ) ? true : false;
	  while (list($key, $value) = each($lng->catalog_languages)) {
		if ( defined( 'USU5_MULTI_LANGUAGE_SEO_SUPPORT' ) && ( USU5_MULTI_LANGUAGE_SEO_SUPPORT == 'true' )
														  && defined( 'USU5_ENABLED' )
														  && ( USU5_ENABLED == 'true' ) ) {
		  if( false === ( $language == $value['directory'] ) ) { // we don't want to show a link to the currently loaded language
			if ( false !== $home_page_redirect ) { // If we are using the root site redirect
			  $link = str_replace( array( FILENAME_DEFAULT, '/' . $current_lang_key ), '', tep_href_link( FILENAME_DEFAULT ) );
			} else {
			  $link = str_replace('/' . $current_lang_key, '', tep_href_link( FILENAME_DEFAULT ) );
			}
			if ( $key !== DEFAULT_LANGUAGE ) { // if it is not the default language we are dealing with
			  if ( false === strpos( $link, '.php' ) && ( false !== $home_page_redirect ) ) {
				$link_array = explode( '?', $link );
				$qs = array_key_exists( 1, $link_array ) ? ( '?' . $link_array[1] ) : '';
				$link = $link_array[0] . FILENAME_DEFAULT . '/' . $key . $qs;
			  } else {
				$link_array = explode( '?', $link );
				$qs = array_key_exists( 1, $link_array ) ? ( '?' . $link_array[1] ) : '';
				$link = str_replace( '.php', '.php/' . $key . $qs, $link );
			  }
			}
			// USU5  shows the language link and image
			$languages_string .= ' <a href="' . $link . '">' . tep_image(DIR_WS_LANGUAGES .  $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a> ';
		  }
		} else { // Just do the standard osCommerce links
		// Standard osCommerce shows the language link and image
		  $languages_string .= ' <a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency')) . 'language=' . $key, $request_type) . '">' . tep_image(DIR_WS_LANGUAGES .  $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a> ';
		}
	  }
	  $data = '<div class="ui-widget infoBoxContainer">' .
			  '  <div class="ui-widget-header infoBoxHeading">' . MODULE_BOXES_LANGUAGES_BOX_TITLE . '</div>' .
			  '  <div class="ui-widget-content infoBoxContents" style="text-align: center;">' . $languages_string . '</div>' .
			  '</div>';
	  $oscTemplate->addBlock($data, $this->group);
	}
  }
}
function isEnabled() {
  return $this->enabled;
}
function check() {
  return defined('MODULE_BOXES_LANGUAGES_STATUS');
}
function install() {
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Languages Module', 'MODULE_BOXES_LANGUAGES_STATUS', 'True', 'Do you want to add the module to your shop?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Content Placement', 'MODULE_BOXES_LANGUAGES_CONTENT_PLACEMENT', 'Right Column', 'Should the module be loaded in the left or right column?', '6', '1', 'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), ', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_BOXES_LANGUAGES_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())");
}
function remove() {
  tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
}
function keys() {
  return array('MODULE_BOXES_LANGUAGES_STATUS', 'MODULE_BOXES_LANGUAGES_CONTENT_PLACEMENT', 'MODULE_BOXES_LANGUAGES_SORT_ORDER');
}
 }

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...