+ // +X2C Operation 364
+ /**
+ * Devuelve true si esta asociado a algun sistema, caso contrario devuelve false
+ *
+ * @return bool
+ * @access public
+ */
+ function asociadoASistema() // ~X2C
+ {
+ $rta = array();
+ $tmp = array();
+ $sql = parse_ini_file(dirname(__FILE__) . '/Permiso/consultas.ini', true);
+ $tmp = $sql['verificar_asociaciones1'].$sql['obtener_datos_permiso2'];
+ $dbh = $this->_db->prepare($tmp);
+ $res = $this->_db->execute($dbh, array ($this->getId()));
+ if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && !$re['cuenta'] == 0) {
+ return true;
+ }
+ else {
+ return false;
+ }
+ }
+ // -X2C
+