Esempio n. 1
0
<?php

/**
 * magento_sdk demo
 *
 * @author  Jiankang.Wang
 * @Date    2014-6-19
 * @Time    10:03:37 AM
 */
$products = array(array('type' => 'simple', 'set' => 4, 'sku' => 'simple_product_sku', 'productData' => array('categories' => array(2), 'websites' => array(1), 'is_deal' => 1, 'deal_start_time' => '2014-07-07', 'special_price' => '10', 'name' => 'Product name', 'description' => 'Product description', 'short_description' => 'Product short description', 'weight' => '10', 'status' => '1', 'url_key' => 'simple-product-sku-url-key', 'url_path' => 'simple-product-sku-url-path', 'visibility' => '4', 'price' => '100', 'tax_class_id' => 1, 'meta_title' => 'Product meta title', 'meta_keyword' => 'Product meta keyword', 'meta_description' => 'Product meta description'), 'store' => '1', 'images' => array(MagentoApi::image('C:\\Users\\lujie\\Pictures\\Koala.jpg', array('deal_top_image_1'), null, true), MagentoApi::image('C:\\Users\\lujie\\Pictures\\Penguins.jpg', array('deal_top_image_2'), null, true), MagentoApi::image('http://img12.360buyimg.com/n0/g14/M04/04/0C/rBEhVlKcWD8IAAAAAAFrOf88o0MAAGWdgHvBOoAAWtR189.jpg', array('image')))), array('type' => 'simple', 'set' => 'Shoes', 'sku' => 'simple1 for configurable', 'storeView' => '1', 'productData' => array('categories' => array(2), 'websites' => array(1), 'is_deal' => 1, 'deal_start_time' => '2014-08-17', 'price' => '100', 'special_price' => '10', 'name' => 'Product name', 'description' => 'Product description', 'short_description' => 'Product short description', 'weight' => '10', 'status' => '1', 'url_key' => 'simple1-key', 'url_path' => 'simple1-path', 'visibility' => '4', 'tax_class_id' => 0, 'meta_title' => 'Product meta title', 'meta_keyword' => 'Product meta keyword', 'meta_description' => 'Product meta description', 'color' => 'Blue', 'size' => 'XL', 'stock_data' => array('manage_stock' => 1, 'qty' => 100, 'is_in_stock' => 1))), array('type' => 'simple', 'set' => 'Shoes', 'store' => '1', 'sku' => 'simple2 for configurable', 'productData' => array('categories' => array(2), 'websites' => array(1), 'is_deal' => 1, 'deal_start_time' => '2014-08-17', 'price' => '200', 'special_price' => '20', 'name' => 'Product name', 'description' => 'Product description', 'short_description' => 'Product short description', 'weight' => '10', 'status' => '1', 'url_key' => 'simple2-key', 'url_path' => 'simple2-path', 'visibility' => '4', 'tax_class_id' => 0, 'meta_title' => 'Product meta title', 'meta_keyword' => 'Product meta keyword', 'meta_description' => 'Product meta description', 'color' => 'Red', 'size' => 'L', 'stock_data' => array('manage_stock' => 1, 'qty' => 200, 'is_in_stock' => 1))), array('type' => 'configurable', 'set' => 'Shoes', 'sku' => 'configurable_product_sku', 'productData' => array('categories' => array(2), 'websites' => array(1), 'is_deal' => 1, 'deal_start_time' => '2014-08-17', 'price' => '100', 'special_price' => '20', 'name' => 'Configurable Product name', 'description' => 'Configurable Product description', 'short_description' => 'Configurable Product short description', 'weight' => '10', 'status' => '1', 'url_key' => 'configurable-product-url-key', 'url_path' => 'configurable-product-url-path', 'visibility' => '4', 'tax_class_id' => 0, 'meta_title' => 'Configurable Product meta title', 'meta_keyword' => 'Configurable Product meta keyword', 'meta_description' => 'Configurable Product meta description', 'configurable_attributes_data' => array(array('attribute_code' => 'color', 'pricing' => array('Blue' => '3', 'Red' => '10%')), array('attribute_code' => 'size', 'pricing' => array('L' => '-3', 'XL' => '-10%'))), 'configurable_products_data' => array('simple1 for configurable', 'simple2 for configurable'))));
#improt articles
//$data = $products;
$data = $api->improtArticles($products);
#get article data
//$data = $api->getArticle('asd');
#get productId,name,description only
//$data = $api->getArticle(12, null, array('product_id', 'name', 'description'));
$products = array('simple1 for configurable' => array('stock_data' => array('manage_stock' => 1, 'qty' => 100, 'is_in_stock' => 1)), 'simple2 for configurable' => array('stock_data' => array('manage_stock' => 1, 'qty' => 200, 'is_in_stock' => 1)));
$data = $api->batchUpdateArticles($products);
Esempio n. 2
0
 * magento_sdk demo
 *
 * @author  Jiankang.Wang
 * @Date    2014-6-19
 * @Time    10:03:37 AM
 */
require 'MagentoApi.php';
//$server = 'http://localhost/magento/';           #magento server address or ip
$server = 'http://192.168.6.13/deal8/';
$user = '******';
#api user name, created by magento
$key = '123456';
#api user key, created by magento
// $user = '******';
// $key = '123456';
$api = new MagentoApi($server);
$api->timeout = 3600;
#same as magento's setting in System > Configuration > Magento Core API > Client Session Timeout (sec.)
$api->init($user, $key);
//require('demo/category.php');
//require('demo/article.php');
//require('demo/customer.php');
//require('demo/order.php');
//require('demo/partner.php');
//require('demo/return.php');
require 'demo/attribute.php';
if ($data) {
    print_r($data);
} else {
    echo $api->error;
}
Esempio n. 3
0
 /**
  * Open the database connection with the credentials from application/config/config.php
  */
 private function openMagentoConnection()
 {
     $this->oAPI = new MagentoApi(MAGENTO_SERVER_NAME);
     $this->oAPI->init(MAGENTO_SERVER_USER, MAGENTO_SERVER_KEY);
 }