/**
  * Shows the module that allows the user to change the page's group
  */
 public function executeShowChangePageGroupModule()
 {
     if ($this->getRequestParameter('idGroup') != '') {
         $this->idPage = $this->getRequestParameter('idPage');
         $this->idGroup = $this->getRequestParameter('idGroup');
         $c = new Criteria();
         $c->add(W3sGroupPeer::TO_DELETE, 0);
         $this->options = W3sGroupPeer::doSelect($c);
     }
 }