add(UserDataPeer::CRYPT, 0); $this->countUncryptUsers = UserDataPeer::doCount($c); } else { $this->countUncryptUsers = 0; } } public function executeShowUncryptOrderBillingUsers() { if(Crypt::is_mcrypt()) { $c = new Criteria(); $c->add(OrderUserDataBillingPeer::CRYPT, 0); $this->countUncryptOrderBillingUsers = OrderUserDataBillingPeer::doCount($c); } else { $this->countUncryptOrderBillingUsers = 0; } } public function executeShowUncryptOrderDeliveryUsers() { if(Crypt::is_mcrypt()) { $c = new Criteria(); $c->add(OrderUserDataDeliveryPeer::CRYPT, 0); $this->countUncryptOrderDeliveryUsers = OrderUserDataDeliveryPeer::doCount($c); } else { $this->countUncryptOrderDeliveryUsers = 0; } } public function executeListMenu() { } public function executeShowUncryptInvoiceCustomer() { if(Crypt::is_mcrypt()) { $c = new Criteria(); $c->add(InvoiceUserCustomerPeer::CRYPT, 0); $this->countUncryptInvoiceCustomer = InvoiceUserCustomerPeer::doCount($c); } else { $this->countUncryptInvoiceCustomer = 0; } } public function executeShowUncryptInvoiceSeller() { if(Crypt::is_mcrypt()) { $c = new Criteria(); $c->add(InvoiceUserSellerPeer::CRYPT, 0); $this->countUncryptInvoiceSeller = InvoiceUserSellerPeer::doCount($c); } else { $this->countUncryptInvoiceSeller = 0; } } }