---
nderungen der Datei ./admin/includes/column_left.php

Suchen Sie am Ende der Datei nach:
?>

Fgen Sie DARBER folgende Zeilen ein:
//protectedshops edit
  if((file_exists('./psapi_import.php') !== FALSE) || (file_exists('./psapi_rating.php') !== FALSE)){
    define('BOX_PS_MODULES', 'ProtectedShops');
    echo('<div class="leftmenu_head" style="background-image:url(images/gm_icons/module.png)">'.BOX_PS_MODULES.'</div>');
    echo('<div class="leftmenu_collapse leftmenu_collapse_opened"> </div>');
    echo('<ul class="leftmenu_box" id="BOX_PS_MODULES">');
    if(($_SESSION['customers_status']['customers_status_id'] == '0') && ($admin_access['psapi_import'] == '1') && (file_exists('psapi_import.php') !== FALSE)){
      define('BOX_PS_IMPORT', 'AGB Connect');
      echo('<li class="leftmenu_body_item"><a class="fav_drag_item" id="BOX_PS_IMPORT" href="'.xtc_href_link('psapi_import.php').'">'.BOX_PS_IMPORT.'&trade;</a></li>');
    }
    if(($_SESSION['customers_status']['customers_status_id'] == '0') && ($admin_access['psapi_rating'] == '1') && (file_exists('psapi_rating.php') !== FALSE)){
      define('BOX_PS_RATING', 'Vote Connect');
      echo('<li class="leftmenu_body_item"><a class="fav_drag_item" id="BOX_PS_RATING" href="'.xtc_href_link('psapi_rating.php').'">'.BOX_PS_RATING.'</a></li>');
    }
    echo('</ul>');
  }
//end protectedshops



---
nderungen der Datei ./templates/[Ihr Template Ordner]/source/boxes.php

Suchen Sie nach folgender Zeile (ca. Zeile 69):
if(gm_display_menubox('extrabox9')) include(DIR_WS_BOXES . 'extrabox9.php');

Fgen Sie DARUNTER folgende Zeilen ein:
//protectedshops
  if(gm_display_menubox('protectedshops_rating'))
    include(DIR_WS_BOXES.'protectedshops_rating_widget.php');
//end protectedshops



---
nderungen der Datei ./checkout_success.php

Suchen Sie nach folgender Zeile (ca. Zeile 216):
if($_SESSION['nc_checkout_success_info']) {

Fgen Sie DARBER folgende Zeilen ein:
//protectedshops
  require(DIR_WS_CLASSES.'protectedshops_ratingapi.php');
  $amount_query = xtc_db_query("SELECT value FROM ".TABLE_ORDERS_TOTAL." WHERE orders_id='".$last_order."' AND class='ot_total' LIMIT 1");
  $amount_result = xtc_db_fetch_array($amount_query);
  $protectedshops_ratingapi = new protectedshops_ratingapi($orders['orders_id'], round($amount_result['value']));
//end protectedshops
