} else {
             if (isset($_POST['start'])) {
                 $date = htmlspecialchars($_POST['start']);
                 $count = new Count($software, $date);
                 include_once PLUGIN_PATH_SHIPWORKSWORDPRESS . 'view/count.php';
             } else {
                 $count = new Count($software);
                 include_once PLUGIN_PATH_SHIPWORKSWORDPRESS . 'view/count.php';
             }
         }
     }
 } else {
     if ('getorders' == $action) {
         $orderManager = new OrderManager($software, $date);
         if (isset($_POST['start'])) {
             if (!$orderManager->isFree() && !$orderManager->hasPayed() && isset($_POST['start']) && $orderManager->getFreeOrdersNumber(htmlspecialchars($_POST['start'])) > 0) {
                 // Variable pour la vue
                 $numberLimite = $orderManager->getFreeOrdersNumber(htmlspecialchars($_POST['start']));
             }
             if (!$orderManager->isFree() && !$orderManager->hasPayed() && isset($_POST['start']) && $orderManager->getFreeOrdersNumber(htmlspecialchars($_POST['start'])) == 0) {
                 $description = __("You are trying to dowload more than 30 orders over the last month. You need to upgrade the ShipWorks Bridge plugin version or to pay for the last month. Please go on our site : http://www.advanced-creation.com/plugin-shipworks/. And then create a subscription with your domaine name which is currently : " . $_SERVER['HTTP_HOST']);
                 include_once PLUGIN_PATH_SHIPWORKSWORDPRESS . 'view/error.php';
             } else {
                 $date = htmlspecialchars($_POST['start']);
                 $orders = new Orders($software, $date);
                 include_once PLUGIN_PATH_SHIPWORKSWORDPRESS . 'view/orders.php';
             }
         } else {
             $orders = new Orders($software);
             include_once PLUGIN_PATH_SHIPWORKSWORDPRESS . 'view/orders.php';
         }