Changeset 19372


Ignore:
Timestamp:
2010/11/07 02:14:48 (13 years ago)
Author:
konishi
Message:

表示テスト

Location:
branches/camp/camp-2_5-C/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-C/data/class/SC_CartSession.php

    r18859 r19372  
    559559        unset($_SESSION['cartKey']); 
    560560    } 
     561     
     562    function addPreview($form) { 
     563        $this->previewSession[preview] = $form; 
     564    } 
     565     
    561566} 
    562567?> 
  • branches/camp/camp-2_5-C/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php

    r19365 r19372  
    234234                break; 
    235235            case 'preview': 
    236                 print_r($_POST); 
    237                 echo "window.open(/html/admin/products/product_preview.php)"; 
     236                $objCartSess = new SC_CartSession(); 
     237                $objCartSess->addPreview($this->arrForm); 
     238                print_r($_SESSION); 
     239                echo "window.open('/html/admin/products/product_preview.php','test','100','100');"; 
    238240                $this->lfProductPage(); 
    239241             
Note: See TracChangeset for help on using the changeset viewer.