PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/seoshop.live/wp-content/plugins/cart66/models/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/seoshop.live/wp-content/plugins/cart66/models/Cart66Dialog.php

<?php

class Cart66Dialog {
  
  public function cart66_get_popup_screens(){
    $default_screens = array(
      'page',
      'post',
      'dashboard'
    );
    
    $custom_screens = apply_filters('cart66_add_popup_screens', true);
    $custom_screens = (is_array($custom_screens)) ? $custom_screens : array();
    
    $output = array_merge($default_screens, $custom_screens);
    return $output;
  }
  
  public static function cart66_dialog_box() {
    global $wp_version;
    $button = '';
    if(version_compare($wp_version, '3.5-beta-1', '>=')) {
      $button = ' button';
    }
    $image = CART66_URL . '/images/cart66_tiny_type.png';
    $cart66_button = '<a id="Cart66Thickbox" href="#TB_inline?width=670&height=440&inlineId=select_cart66_shortcode" class="thickbox' . $button . '" title="' . 
      __("Add Cart66 Shortcodes", 'cart66') 
      . '"><img src="'.$image.'" alt="' . 
      __("Add Cart66 Shortcodes", 'cart66') 
      . '" width="36px" height="12px" /></a>';
    echo $cart66_button;
  }
  
  //Action target that displays the popup to insert a form to a post/page
  function add_shortcode_popup() {
    global $current_screen;
    //Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] Thinking about adding code for shortcode popup: $current_screen->id");
    
    $add_popup = false;
    if(in_array($current_screen->id, Cart66Dialog::cart66_get_popup_screens())) {
      $add_popup = true;
    }
    
    if($add_popup) { 
      Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] Adding code for shortcode popup");
    }
    else {
      return;
    }
    ?>
    <link type="text/css" rel="stylesheet" href="<?php echo CART66_URL; ?>/js/cart66.css" />
    <script language="javascript" type="text/javascript">

      <?php
      $prices = array();
      $types = array(); 
      $options='';
      $products = Cart66Product::loadProductsOutsideOfClass();
      
      //$products = $product->getModels("where id>0", "order by name");    	
      if(count($products)):
        $i=0;
        foreach($products as $p) {
          $optionClasses = "";
          if($p->item_number==""){
            $id=$p->id;
            $type='id';
            $description = "";
          }
          else{
            $id=$p->item_number;
            $type='item';
            $description = '(# '.$p->item_number.')';
          }

          $types[] = htmlspecialchars($type);

          if(CART66_PRO && $p->is_paypal_subscription == 1) {
            $sub = new Cart66PayPalSubscription($p->id);
            $subPrice = strip_tags($sub->getPriceDescription($sub->offerTrial > 0, '(trial)'));
            $prices[] = htmlspecialchars($subPrice);
            $optionClasses .= " subscriptionProduct ";
            //Cart66Common::log('[' . basename(__FILE__) . ' - line ' . __LINE__ . "] subscription price in dialog: $subPrice");
          }
          else {
            $priceDescription = __('Price:', 'cart66') . ' ' . Cart66Common::currency($p->price);
            if($p->price_description != null) {
              $priceDescription = $p->price_description;
            }
         
            $prices[] = htmlspecialchars(strip_tags($priceDescription));
          }


          $options .= '<option value="'.$id.'" class="' . $optionClasses . '">'.$p->name.' '.$description.'</option>';
          $i++;

        }

      else:
        $options .= '<option value="">' . __('No Products', 'cart66') . '</option>';
      endif;

      $prodTypes = implode("\",\"",$types);
      $prodPrices = implode("\",\"", $prices);
      ?>
      
      var prodtype = new Array("<?php echo $prodTypes; ?>");
      var prodprices = new Array("<?php echo $prodPrices; ?>");
      
      function insertProductCode(){
        var type =  prodtype[jQuery("#productNameSelector option:selected").index()];
        var prod  = jQuery("#productNameSelector option:selected").val();
        if(jQuery("#productStyle").val()!=""){
          var style  = 'style="'+jQuery("#productStyle").val()+'"';
        }
        else {
          var style = '';
        }
      
        if(jQuery("#buttonText").val()!=""){
          var text  = 'text="'+jQuery("#buttonText").val()+'"';
        }
        else {
          var text = '';
        }
      
        var quantity = jQuery("input:radio[name=quantityOptions]:checked").val();
        var defaultQuantity = jQuery("#defaultQuantity").val();
        if(quantity == 'user') {
          if(defaultQuantity == ''){
            var quantity = 'quantity="user"';
          }
          else {
            var quantity = 'quantity="user:'+defaultQuantity+'"';
          }
        }
        else if(quantity == 'pre'){
          var quantity = 'quantity="'+defaultQuantity+'"';
        }
        else {
          var quantity = '';
        }
        if(jQuery("#productNameSelector option:selected").hasClass('subscriptionProduct')){
          var quantity = '';
        }
        
        var ajax = jQuery("input:radio[name=ajaxOptions]:checked").val();
        if(ajax == 'yes') {
          var ajax = 'ajax="yes"';
        }
        else {
          var ajax = '';
        }
        
        var showPrice = jQuery("input:radio[name=showPrice]:checked").val();
        if(showPrice == 'no') {
          var showPrice = 'showprice="no"';
        }
        else if(showPrice == 'only'){
          var showPrice = 'showprice="only"';
        }
        else {
          var showPrice = '';
        }
        
        var buttonImage = '';
        if(jQuery("#buttonImage").val() != "") {
          var buttonImage = 'img="' + jQuery("#buttonImage").val() + '"';
        }

        window.send_to_editor('&nbsp;[add_to_cart '+type+'="'+prod+'" '+style+' ' +showPrice+' '+buttonImage+' ' +quantity+' ' +text+ ' ' +ajax+ ' ]&nbsp;');
      }
      
      function shortcode(code){
        window.send_to_editor('&nbsp;['+code+']&nbsp;');
      }

      function shortcode_wrap(open, close){
        window.send_to_editor('&nbsp;['+open+"]&nbsp;<br/>[/"+close+']&nbsp;');
      }
      
      function preview(){

        var productIndex = jQuery("#productNameSelector option:selected").index();

        var priceDescription = jQuery("<div/>").html(prodprices[productIndex]).text();
        var price = "<p id='priceLabel'>" + priceDescription + "</p>";
        if(jQuery("input:radio[name=showPrice]:checked").val()=="no"){
          price = "";
        }

        var style = "";
        if(jQuery("#productStyle").val()!="") {
          style = jQuery("#productStyle").val();
        }
        
        var text = "";
        if(jQuery("#buttonText").val()!="") {
          text = jQuery("#buttonText").val();
        }
        else {
          text = '<?php _e( "Add to Cart" , "cart66" ); ?>';
        }
        
        <?php 
          $setting = new Cart66Setting();
          $cartImgPath = Cart66Setting::getValue('cart_images_url');
          if($cartImgPath) {
            if(strpos(strrev($cartImgPath), '/') !== 0) {
              $cartImgPath .= '/';
            }
            $buttonPath = $cartImgPath . 'add-to-cart.png';
          }
        ?>

        var button = '';

        <?php if($cartImgPath): ?>
          var buttonPath = '<?php echo $buttonPath ?>';
          button = "<img src='"+buttonPath+"' title='"+text+"' alt='<?php _e( 'Cart66 Add To Cart Button' , 'cart66' ); ?>'>";
        <?php else: ?>
          button = "<input type='button' class='Cart66ButtonPrimary' value='"+text+"' />";
        <?php endif; ?>

        if(jQuery("#buttonImage").val()!=""){
          button = "<img src='"+jQuery("#buttonImage").val()+"' title='<?php _e( 'Add to Cart' , 'cart66' ); ?>' alt='<?php _e( 'Cart66 Add To Cart Button' , 'cart66' ); ?>'>";
        } 

        if(jQuery("input:radio[name=showPrice]:checked").val()=="only"){
          button= "";
        }

        var prevBox = "<div style='"+style+"'>"+price+button+"</div>";

        jQuery("#buttonPreview").html(prevBox).text();
      
        if(jQuery("#productNameSelector option:selected").hasClass('subscriptionProduct')){
          jQuery('.quantity').hide();
        }
        else{
          jQuery('.quantity').show();
        }
      }
    </script>
    <div id="select_cart66_shortcode" style="display:none;">
      <div id="cart66-shortcode-window">
        <div id="cart66-shortcode-header">
          <ul class="tabs" id="sidemenu">
            <li class="s1" id="tab-products"><a class="s1 tab" href="javascript:void(0)"><?php _e('Products', 'cart66') ?></a></li>
            <li class="s2" id="tab-shortcodes"><a class="s2 tab" href="javascript:void(0)"><?php _e('Shortcodes', 'cart66') ?></a></li>
          </ul>
        </div>
        <div class="loading">
          <h2 class="center"><?php _e('loading...', 'cart66') ?></h2>
        </div>
        <div class="s1 panes">
          <h3><?php _e("Insert A Product", "cart66"); ?></h3>
          <ul>
            <li>
              <label for="productNameSelector"><?php  _e('Your products'); ?>:</label>
              <select id="productNameSelector" name="productName"><?php echo $options; ?></select>
            </li>
            <li class="quantity">
              <label for="quantityOptions" ><?php  _e('Quantity'); ?>:</label>
              <input type='radio' id="quantityOptions" name="quantityOptions" value='user' checked> <?php _e('User Defined', 'cart66'); ?>
              <input type='radio' id="quantityOptions" name="quantityOptions" value='pre'> <?php _e('Predefined', 'cart66'); ?>
              <input type='radio' id="quantityOptions" name="quantityOptions" value='off'> <?php _e('Off', 'cart66'); ?><br />
            </li>
            <li id="defaultQuantityGroup" class="quantity">
              <label for="defaultQuantity"><?php _e('Default Quantity', 'cart66'); ?>:</label>
              <input id="defaultQuantity" name="defaultQuantity" size="2" value="1">
            </li>
            <li>
              <label for="buttonText"><?php  _e('Button Text'); ?>:</label>
              <input id="buttonText" name="buttonText" size="34">
            </li>
            <li>
              <label for="productStyle"><?php  _e('CSS style'); ?>:</label>
              <input id="productStyle" name="productStyle" size="34">
            </li>
            <li>
              <label for="ajaxOptions" ><?php  _e('Ajax Add To Cart'); ?>:</label>
              <?php if(Cart66Setting::getValue('enable_ajax_by_default') && Cart66Setting::getValue('enable_ajax_by_default') == "yes"): ?>
                <input type='radio' id="ajaxOptions" name="ajaxOptions" value='yes' checked> <?php _e('Yes', 'cart66'); ?>
                <input type='radio' id="ajaxOptions" name="ajaxOptions" value='no'> <?php _e('No', 'cart66'); ?>
              <?php else: ?>
                <input type='radio' id="ajaxOptions" name="ajaxOptions" value='yes'> <?php _e('Yes', 'cart66'); ?>
                <input type='radio' id="ajaxOptions" name="ajaxOptions" value='no' checked> <?php _e('No', 'cart66'); ?>
              <?php endif; ?>
            </li>
            <li>
              <label for="showPrice" style="display: inline-block; width: 120px; text-align: right;"><?php  _e('Show price'); ?>:</label>
              <input type='radio' id="showPrice" name="showPrice" value='yes' checked> <?php _e('Yes', 'cart66'); ?>
              <input type='radio' id="showPrice" name="showPrice" value='no'> <?php _e('No', 'cart66'); ?>
              <input type='radio' id="showPrice" name="showPrice" value='only'> <?php _e('Price Only', 'cart66'); ?>
            </li>
            <li>
              <label for="buttonImage" ><?php  _e('Button path'); ?>:</label>
              <input id="buttonImage" name="buttonImage" size="34">
            </li>
            <li>
              <label for="buttonImage" ><?php  _e('Preview'); ?>:</label>
              <div class="" id="buttonPreview"></div>
            </li>
            <li>
              
            </li>
          </ul>
        </div>
        <?php
        $shortcodes_system = array(
         'express' => __('Listens for PayPal Express callbacks <br/>Belongs on system page store/express', 'cart66'),
         'ipn' => __('PayPal Instant Payment Notification <br/>Belongs on system page store/ipn', 'cart66'),
         'receipt' => __('Shows the customer\'s receipt after a successful sale <br/>Belongs on system page store/receipt', 'cart66')
        );
        $shortcodes = array(
          'add_to_cart item=&quot;&quot;' => __('Create add to cart button', 'cart66'),
          'cart' => __('Show the shopping cart', 'cart66'),
          'cart mode=&quot;read&quot;' => __('Show the shopping cart in read-only mode', 'cart66'),
          'checkout_mijireh' => __('Mijireh Checkout Accept Credit Cards - PCI Compliant', 'cart66'),
          'checkout_stripe' => __('Stripe Checkout form', 'cart66'),
          'checkout_2checkout' => __('2Checkout checkout form', 'cart66'),
          'checkout_manual' => __('Checkout form that does not process credit cards', 'cart66'),
          'checkout_paypal' => __('PayPal Website Payments Standard checkout button', 'cart66'),
          'checkout_paypal_express' => __('PayPal Express checkout button', 'cart66'),
          'clear_cart' => __('Clear the contents of the shopping cart', 'cart66'),
          'shopping_cart' => __('Show the Cart66 sidebar widget', 'cart66'),
          'post_sale' => __('Display content one time immediately after a sale', 'cart66'),
          'cart66_affiliate' => __('Add order information to an affiliate URL that can be used inside the post_sale shortcode. The only attribute is "display"', 'cart66')
        );
        if(CART66_PRO){
          $shortcodes_pro = array(
            'account_info' => __('Show link to manage subscription account information', 'cart66'),
            'account_login' => __('Account login form', 'cart66'),
            'account_logout' => __('Logs user out of account', 'cart66'),
            'account_logout_link' => __('Show link to log out of account', 'cart66'),
            'account_expiration' => __('Show a member when their account expires', 'cart66'),
            'cancel_paypal_subscription' => __('Link to cancel PayPal subscription', 'cart66'),
            'checkout_payleap' => __('PayLeap checkout form', 'cart66'),
            'checkout_authorizenet' => __('Authorize.net (or AIM compatible gateway) checkout form', 'cart66'),
            'checkout_eway' => __('Eway checkout form', 'cart66'),
            'checkout_mwarrior' => __('Merchant Warrior checkout form', 'cart66'),
            'checkout_paypal_pro' => __('PayPal Pro checkout form', 'cart66'),
            'terms_of_service' => __('Show the terms of service agreement', 'cart66'),
            'subscription_feature_level' => __('Show the name of the subscription feature level for the currently logged in user', 'cart66'),
            'subscription_name' => __('Show the name of the subscription for the currently logged in user', 'cart66'),
            'zendesk_login' => __('Listens for remote login calls from Zendesk', 'cart66'),
            'hide_from' => __('Hide content from members without the listed feature levels - opposite of [show_to]', 'cart66'),
            'show_to' => __('Show content only to members with the listed feature levels - opposite of [hide_from]', 'cart66'),
            'email_opt_out' => __('Allow Cart66 members to opt out of receiving notifications about the status of their account.', 'cart66')
          );
          $shortcodes = array_merge($shortcodes, $shortcodes_pro);
          $shortcodes_system['spreedly_listener'] = __('Listens for spreedly account changes <br/>Belongs on system page store/spreedly', 'cart66');
        }
        ksort($shortcodes);
        ?>
        <div class="s2 panes">
          <h3><?php _e("Insert A System Shortcode", "cart66"); ?></h3>
          <table id="shortCodeList" cellpadding="0">
            <tr>
              <td colspan="2"><strong><?php _e('Shortcode Quick Reference', 'cart66')?></strong></td>
            </tr>
            <?php
            foreach($shortcodes as $shortcode => $description) { ?>
              <tr>
                <td><div class="shortcode" <?php
                  if($shortcode == 'hide_from' || $shortcode == 'show_to' || $shortcode == 'post_sale') { ?>
                    onclick="shortcode_wrap('<?php echo $shortcode; ?> <?php echo ($shortcode == 'show_to' || $shortcode == 'hide_from') ? 'level=&quot;&quot;' : ''; ?>', '<?php echo $shortcode; ?>');"
                  <?php }
                  else { ?>
                    onclick="shortcode('<?php echo $shortcode; ?>');"
                <?php } ?>><a title="Insert [<?php echo $shortcode; ?>]">[<?php echo ($shortcode == 'show_to' || $shortcode == 'hide_from') ? "$shortcode level=&quot;&quot;" : "$shortcode"; ?>]</a></div></td>
                <td><?php echo $description; ?></td>
                </tr>
            <?php }
            ?>
          </table>
          <br/>
          <table id="systemShortCodeList" cellpadding="0">
            <tr>
              <td colspan="2"><strong><?php _e('System Shortcodes', 'cart66')?></strong></td>
            </tr>
            <?php
            foreach($shortcodes_system as $shortcode => $description) { ?>
              <tr>
                <td><div class="shortcode" <?php
                  if($shortcode == 'hide_from' || $shortcode == 'show_to' || $shortcode == 'post_sale') { ?>
                    onclick="shortcode_wrap('<?php echo $shortcode; ?> <?php echo ($shortcode == 'show_to' || $shortcode == 'hide_from') ? 'level=&quot;&quot;' : ''; ?>', '<?php echo $shortcode; ?>');"
                  <?php }
                  else { ?>
                    onclick="shortcode('<?php echo $shortcode; ?>');"
                <?php } ?>><a title="Insert [<?php echo $shortcode; ?>]">[<?php echo ($shortcode == 'show_to' || $shortcode == 'hide_from') ? "$shortcode level=&quot;&quot;" : "$shortcode"; ?>]</a></div></td>
                <td><?php echo $description; ?></td>
                </tr>
            <?php }
            ?>
          </table>
        </div>
        <div>
          <div class="buttons">
            <input type="button" class="button-secondary" value="<?php _e("Cancel", "cart66"); ?>" onclick="tb_remove();" />
            <input id="insertProductButton" type="button" class="button-primary" value="<?php _e("Insert Shortcode", "cart66"); ?>" onclick="insertProductCode();"/>
          </div>
        </div>
      </div>
    </div>
    <script type="text/javascript">
      (function($){
        function adjustHeights() {
          hWindow = $('#TB_window').height();
          wWindow = $('#TB_window').width();
          $('#TB_ajaxContent').height(hWindow - 45);
          $('#TB_ajaxContent').width(wWindow - 30);
        }
        $(window).resize(function() {
          $('#TB_ajaxContent').css('height','auto');
          adjustHeights();
        });
        $(document).ready(function() {
          preview();
          $("input").change(function(){preview();});
          $("input").click(function(){preview();});
          $("#productNameSelector").change(function(){
            preview();
          })
          adjustHeights();
          $("#Cart66ThickBox").click(function(){
            adjustHeights();
          })
          $("input:radio[name=quantityOptions]").change(function(){
            if($("input:radio[name=quantityOptions]:checked").val()=="off"){
              $("#defaultQuantityGroup").fadeOut(600);
            }
            else{
              $("#defaultQuantityGroup").fadeIn(600);
            }
          })
          // setting the tabs in the sidebar hide and show, setting the current tab
          $('div.panes').hide();
          $('div.s1').show();
          $('div.loading').hide();
          $('#insertProductButton').show();
          $('div#cart66-shortcode-header ul.tabs li.s1 a').addClass('current');
          // SIDEBAR TABS
          $('div#cart66-shortcode-header ul li a').click(function(){
            adjustHeights();
            var thisClass = this.className.slice(0,2);
            $('div.panes').hide();
            $('div.' + thisClass).fadeIn(300);
            $('div#cart66-shortcode-header ul.tabs li a').removeClass('current');
            $('div#cart66-shortcode-header ul.tabs li a.' + thisClass).addClass('current');
            if($('.current').hasClass('s1')){
              $('#insertProductButton').fadeIn(300);
            }
            else{
              $('#insertProductButton').fadeOut(300);
            }
          });
        });
      })(jQuery);
    </script>
  <?php
  }
  
}