예제 #1
0
 function sendOrderToManager(&$fields)
 {
     global $modx, $shkconf;
     if (!class_exists('Shopkeeper')) {
         require_once MODX_BASE_PATH . "assets/snippets/shopkeeper/class.shopkeeper.php";
     }
     $shopCart = new Shopkeeper($modx, $shkconf);
     $shopCart->sendOrderToManager($fields);
     return true;
 }