function getAll($liTags = "")
 {
     $xL = new cLang();
     $xQl = new MQL();
     $xBtn = new cHButton();
     $ConHijos = $this->mIsMobile == false ? true : false;
     $pUSRNivel = $_SESSION["SN_d567c9b2d95fbc0a51e94d665abe9da3"];
     $menu = "";
     $this->mFilter = " AND (FIND_IN_SET('{$pUSRNivel}@rw', menu_rules)>0\tOR FIND_IN_SET('{$pUSRNivel}@ro', menu_rules)>0) ";
     $filter = $this->mFilter;
     $sql_TN1 = "SELECT * FROM general_menu WHERE menu_parent=0 {$filter} AND menu_parent = 0 ORDER BY menu_order ";
     $mmenu = null;
     $xCache = new cCache();
     $idcache = $ConHijos == true ? "menu.childs.{$pUSRNivel}" : "menu.normal.{$pUSRNivel}";
     if ($xCache->isReady() == true) {
         $mmenu = $xCache->get($idcache);
     }
     if ($mmenu == null) {
         $rs = $xQl->getDataRecord($sql_TN1);
         foreach ($rs as $rw) {
             $Clave = $rw["idgeneral_menu"];
             $xItem = new cHMenuItem($Clave, $rw);
             $mxItem = "";
             $run = true;
             if ($Clave == 4000 and MODULO_SEGUIMIENTO_ACTIVADO == false) {
                 $run = false;
             }
             if ($Clave == 5000 and MODULO_CONTABILIDAD_ACTIVADO == false) {
                 $run = false;
             }
             if ($Clave == 7000 and MODULO_AML_ACTIVADO == false) {
                 $run = false;
             }
             if ($Clave == 8000 and MODULO_CAPTACION_ACTIVADO == false) {
                 $run = false;
             }
             if ($run == true) {
                 if ($ConHijos == true) {
                     $mxItem = $this->getItems($Clave);
                     $mxItem = trim($mxItem) == "" ? "" : "<ul>" . $mxItem . "</ul>";
                 }
                 $menu .= $xItem->getLi($this->mIncImages, $mxItem, $liTags);
             }
         }
         $mmenu = "<ul id=\"" . $this->mID . "\">" . $menu . "</ul>";
     }
     return $mmenu;
 }
 /**
  * Muestra una Ficha de Informacion del Socio
  *
  * @param string $domicilio_extendido
  * @param string $trTool
  * @param string $marco
  * @return string
  */
 function getFicha($domicilio_extendido = false, $marco = true, $trTool = "")
 {
     $eldom = "";
     $idpersona = $this->mCodigo;
     $ccache = $domicilio_extendido == true ? EACP_CLAVE . ".ficha.{$idpersona}.ext" : EACP_CLAVE . ".ficha.{$idpersona}";
     $this->mIDEnCache = $ccache;
     $xCache = new cCache();
     $exoFicha = null;
     if ($xCache->isReady() == true) {
         $exoFicha = $xCache->get($ccache);
     }
     if ($exoFicha == null) {
         $DSocio = $this->getDatosInArray();
         $DIngreso = $this->getDatosDeIngreso_InArray();
         $empresa = $this->getClaveDeEmpresa();
         $tingreso = $DIngreso["descripcion_tipoingreso"];
         $xLng = new cLang();
         $xT = new cTipos();
         $xT->setForceMayus();
         $xT->setToUTF8();
         $mdom = $this->getDomicilio(99);
         $elnombre = $this->getNombreCompleto();
         // $DSocio["apellidopaterno"] . " " . $DSocio["apellidomaterno"] . " " . $DSocio["nombrecompleto"];
         if ($domicilio_extendido == false) {
             $eldom = strlen(trim($mdom)) < 6 ? "" : "<tr><th class='izq'>" . $xLng->getT("TR.Domicilio") . "</th><td colspan='3'>" . htmlentities($xT->cChar($mdom)) . "</td></tr>";
         } else {
             if ($this->getODomicilio() != null) {
                 $eldom = "<tr><td colspan='4'>" . $this->getODomicilio()->getFicha($this->getTelefonoPrincipal()) . "</td></tr>";
             }
         }
         $rfc = $this->getRFC();
         $curp = $this->getCURP();
         $tool = $trTool;
         $wTable = "";
         $tdExtra = "";
         $tdCurp = "<th class='izq'>" . $xLng->getT("TR.CURP") . "</th><td>{$curp}</td>";
         if ($this->getEsPersonaFisica() == false) {
             $tdCurp = "";
             //OBTENER REPRESENTANTE LEGAL
             //22Octubre2013
             $xRels = $this->getORepresentanteLegal();
             if ($xRels != null) {
                 $tdCurp = "<th class='izq'>" . $xRels->getNombreRelacion() . "</th><td>" . $xRels->getCodigoDePersona() . "-" . $xRels->getNombreDelRelacionado() . "</td>";
             }
         }
         if ($this->mGrupoAsociado != DEFAULT_GRUPO) {
             $dG = new cGrupo($this->mGrupoAsociado);
             $grupo = $dG->getNombre();
             $tdExtra .= "<tr><th class='izq'>" . $xLng->getT("TR.Grupo Solidario") . "</th><td colspan='3'>{$grupo}</td></tr>";
         }
         if ($empresa != DEFAULT_EMPRESA) {
             $xEmp = new cEmpresas($empresa);
             $xEmp->init();
             $Nempresa = cleanString($xEmp->getNombre());
             $tdExtra .= "<tr><th class='izq'>" . $xLng->getT("TR.Empresa") . "</th><td colspan='3'>{$Nempresa}</td></tr>";
         }
         if (getEsModuloMostrado(USUARIO_TIPO_OFICIAL_AML) == true) {
             $xDPais = new cDomiciliosPaises($this->getPaisDeOrigen());
             $xDPais->init();
             $NPais = $xDPais->getNombre();
             $xRiesgo = new cAml_risk_levels();
             $xRiesgo->setData($xRiesgo->query()->initByID($this->getNivelDeRiesgo()));
             $tdExtra .= "<tr><th class='izq'>" . $xLng->getT("TR.Riesgo de Persona") . "</th><td>" . strtoupper($xRiesgo->nombre_del_nivel()->v()) . "</td>\n\t\t\t\t\t\t<th class='izq'>" . $xLng->getT("TR.pais") . "</th><td colspan='3'>{$NPais}</td></tr>";
         }
         $exoFicha = "\n\t\t\t<table {$wTable} >\n\t\t\t<tbody>\n\t\t\t\t<tr>\n\t\t\t\t\t<th class='izq'>" . $xLng->getT("TR.Codigo") . "</th>\n\t\t\t\t\t<th>" . $this->mCodigo . "</th>\n\t\t\t\t\t<th class='izq'>" . $xLng->getT("TR.Nombre_completo") . "</th>\n\t\t\t\t\t<td>{$elnombre}</td>\n\t\t\t\t</tr>\n\t\t\t\t{$eldom}\n\t\t\t\t<tr>\n\t\t\t\t\t<th class='izq'>" . $xLng->getT("TR.RFC") . "</th>\n\t\t\t\t\t<td>{$rfc}</td>\n\t\t\t\t\t{$tdCurp}\n\t\t\t\t</tr>\n\t\t\t\t{$tdExtra}\n\t\t\t</tbody>\n\t\t\t<tfoot>{$tool}</tfoot>\n\t\t\t</table>";
         if ($marco == true) {
             $exoFicha = "<fieldset><legend>|&nbsp;&nbsp;" . $xLng->getT("TR.Ficha de Informacion") . "&nbsp;&nbsp;|</legend>\n\t\t\t\t\t\t{$exoFicha}\n\t\t\t\t\t\t</fieldset>";
         }
         if ($xCache->isReady() == true) {
             $xCache->set($ccache, $exoFicha);
         }
     }
     return $exoFicha;
 }
 function OCache($key, $value = null)
 {
     $res = null;
     $key = trim($key);
     if ($key != "") {
         $key = $this->mCurrLang . ".{$key}";
         $xCache = new cCache();
         if ($xCache->isReady() == true) {
             if ($value == null) {
                 $res = $xCache->get($key);
             } else {
                 $xCache->set($key, $value);
             }
         }
     }
     return $res;
 }