Guest User

Untitled

a guest
Dec 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. // create new category
  4. $parentCatId = 40; // as an example
  5. $newCategoryId = $proxy->call(
  6. $sessionId,
  7. 'category.create',
  8. array(
  9. $parentCategoryId,
  10. array(
  11. 'name'=>'New Category!',
  12. 'is_active'=>1,
  13. 'is_anchor'=>1
  14. )
  15. )
  16. );
  17.  
  18.  
  19. ?>
Add Comment
Please, Sign In to add comment