- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
140 lines
2.5 KiB
PHP
140 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Safe;
|
|
|
|
use Safe\Exceptions\YazException;
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @param string $query
|
|
* @param array|null $result
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_ccl_parse($id, string $query, ?array &$result): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_ccl_parse($id, $query, $result);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_close($id): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_close($id);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $zurl
|
|
* @param mixed $options
|
|
* @return mixed
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_connect(string $zurl, $options = null)
|
|
{
|
|
error_clear_last();
|
|
if ($options !== null) {
|
|
$safeResult = \yaz_connect($zurl, $options);
|
|
} else {
|
|
$safeResult = \yaz_connect($zurl);
|
|
}
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
return $safeResult;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @param string $databases
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_database($id, string $databases): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_database($id, $databases);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @param string $elementset
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_element($id, string $elementset): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_element($id, $elementset);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_present($id): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_present($id);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $id
|
|
* @param string $type
|
|
* @param string $query
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_search($id, string $type, string $query): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_search($id, $type, $query);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param array $options
|
|
* @return mixed
|
|
* @throws YazException
|
|
*
|
|
*/
|
|
function yaz_wait(?array &$options = null)
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \yaz_wait($options);
|
|
if ($safeResult === false) {
|
|
throw YazException::createFromPhpError();
|
|
}
|
|
return $safeResult;
|
|
}
|