/** * @param Libro_version $libro_version The libro_version object to add. */ protected function doAddLibro_version($libro_version) { $this->collLibro_versions[] = $libro_version; $libro_version->setUsuario($this); }
/** * Filter the query by a related Libro_version object * * @param Libro_version $libro_version the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return UsuarioQuery The current query, for fluid interface */ public function filterByLibro_version($libro_version, $comparison = null) { if ($libro_version instanceof Libro_version) { return $this->addUsingAlias(UsuarioPeer::ID, $libro_version->getIdusuario(), $comparison); } elseif ($libro_version instanceof PropelCollection) { return $this->useLibro_versionQuery()->filterByPrimaryKeys($libro_version->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByLibro_version() only accepts arguments of type Libro_version or PropelCollection'); } }
$libroObj->save(); file_put_contents(SITE_PATH . "/libros/libro_" . $datos->idlibro . ".txt", $datos->texto); echo json_encode(array('msg' => "Libro guardado correctamente", 'idlibro' => $datos->idlibro)); } break; case "version": //diff -y -T --suppress-common-lines -a --strip-trailing-cr indexold.php index.php if ($datos->idlibro == "") { $libroObj = new Libro(); $libroObj->setNombre($datos->nombrelibro); $libroObj->save(); $idLibro = $libroObj->getId(); } else { $idLibro = $datos->idlibro; } $libroVersion = new Libro_version(); $libroVersion->setIdlibro($idLibro); $libroVersion->setFecha(date("Y-m-d")); $libroVersion->setHora(date("H:i:s")); $libroVersion->setIdusuario($_SESSION['userid']); $libroVersion->save(); file_put_contents(SITE_PATH . "/libros_version/libro_" . $idLibro . "_" . $libroVersion->getId() . ".txt", base64_decode($datos->texto)); echo json_encode(array('msg' => "Libro guardado correctamente", 'idlibro' => $idLibro)); break; case "marcarActividad": $fecha = date("Y-m-d"); $hora = date("h:i:s"); $libroObj = LibroQuery::create()->findOneById($datos->idlibro); $libroObj->setFecha_ult_acc($fecha); $libroObj->setHora_ult_acc($hora); $libroObj->setUsuario_ult_acc($_SESSION['userid']);
/** * Exclude object from result * * @param Libro_version $libro_version Object to remove from the list of results * * @return Libro_versionQuery The current query, for fluid interface */ public function prune($libro_version = null) { if ($libro_version) { $this->addUsingAlias(Libro_versionPeer::ID, $libro_version->getId(), Criteria::NOT_EQUAL); } return $this; }