本文整理汇总了PHP中WSErro函数的典型用法代码示例。如果您正苦于以下问题:PHP WSErro函数的具体用法?PHP WSErro怎么用?PHP WSErro使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了WSErro函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Execute
private function Execute()
{
$this->Connect();
try {
$this->Delete->execute($this->Places);
$this->Result = true;
} catch (PDOException $e) {
$this->Result = null;
WSErro("<b>Erro ao Deletar:</b> {$e->getMessage()}", $e->getCode());
}
}
示例2: Execute
private function Execute()
{
$this->Connect();
try {
$this->Create->execute($this->Dados);
$this->Result = $this->Conn->lastInsertId();
} catch (PDOException $e) {
$this->Result = NULL;
WSErro("<b>ERRO ao cadastrar:</b> {$e->getMessage()}", $e->getCode());
}
}
示例3: execute
private function execute()
{
$this->connect();
try {
$this->create->execute($this->dados);
$this->result = $this->conn->lastInsertId();
} catch (PDOException $e) {
$this->result = null;
WSErro("<b>Erro ao cadastrar: </b> {$e->getMessage()}", $e->getCode());
}
}
示例4: Execute
private function Execute()
{
$this->Connect();
try {
$this->Update->execute(array_merge($this->Dados, $this->Places));
$this->Result = TRUE;
} catch (PDOException $e) {
$this->Result = NULL;
WSErro("<b>Erro ao Atualizar:</b> {$e->getMessage()}", $e->getCode());
}
}
示例5: Execute
private function Execute()
{
$this->Connect();
try {
$this->getSyntax();
$this->Read->execute();
$this->Result = $this->Read->fetchAll();
} catch (PDOException $e) {
$this->Result = null;
WSErro("<b>Erro ao Ler:</b> {$e->getMessage()}", $e->getCode());
}
}
示例6: ExeDelete
/**
* Deleta o posto e trasfere as impressoras para um posto desativado.
*
* @param int $fk_postos
* @return boolean
*/
public function ExeDelete($fk_postos)
{
$AppImpressora = new ImpImpressora();
$AppImpressora->setFk_postos($fk_postos);
$AppImpressora->Execute()->Query("#fk_postos#");
$posto = $this->Read->Execute()->getResult();
$this->Read->setPostos_nome("DESATIVADO");
$this->Read->Execute()->Query("#postos_nome#");
$undeleteId = $this->Read->Execute()->getResult()[0]->postos_id;
if ($fk_postos != $undeleteId) {
foreach ($AppImpressora->Execute()->getResult() as $imp) {
$AppImpressora->Execute()->update("fk_postos={$undeleteId}&impressora_id={$imp->impressora_id}", "impressora_id");
}
$this->Read->setThis($posto);
return $this->Read->Execute()->delete();
} else {
WSErro("O posto <b>DESATIVADO</b> não pode ser deletado!", WS_ERROR);
}
}
示例7: filter_input_array
<title>Helper de gestão de conteúdo</title>
<link rel="stylesheet" href="css/reset.css" />
</head>
<body>
<?php
require './_app/Config.inc.php';
$form = filter_input_array(INPUT_POST, FILTER_DEFAULT);
if ($form && $form['SendImage']) {
$upload = new Upload('uploads/');
$imagem = $_FILES['image'];
// var_dump($imagem);
$upload->Image($imagem);
if (!$upload->getResult()) {
WSErro("Erro ao enviar imágem!<br><small>{$upload->getError()}</small>", WS_ERROR);
} else {
WSErro("Imágem enviada com sucesso!<br><small>{$upload->getResult()}</small>", WS_ACCEPT);
}
echo '<hr>';
var_dump($upload);
}
?>
<form name="fileform" action="" method="post" enctype="multipart/form-data">
<label>
<input type="file" name="image"/>
</label>
<input type="submit" name="SendImage" value="Enviar arquivo!"/>
</form>
</body>
</html>
示例8: AdminEmpresa
$cadastra = new AdminEmpresa();
$cadastra->ExeUpdate($empresa, $data);
WSErro($cadastra->getError()[0], $cadastra->getError()[1]);
} else {
$readEmp = new AppEmpresas();
$readEmp->setEmpresa_id($empresa);
$readEmp->find();
if (!$readEmp->getResult()) {
header('Location: painel.php?exe=empresas/index&empty=true');
} else {
$data = (array) $readEmp->getResult();
}
}
$checkCreate = filter_input(INPUT_GET, 'create', FILTER_VALIDATE_BOOLEAN);
if ($checkCreate && empty($cadastra)) {
WSErro("A empresa <b>{$data['empresa_title']}</b> foi cadastrada com sucesso no sistema!", WS_ACCEPT);
}
?>
<form name="PostForm" action="" method="post" enctype="multipart/form-data">
<label class="label">
<span class="field">Logo da empresa: <sup>Exatamente 578x288px (JPG ou PNG)</sup></span>
<input type="file" name="empresa_capa" />
</label>
<label class="label">
<span class="field">Nome da Empresa:</span>
<input type="text" name="empresa_title" value="<?php
if (isset($data['empresa_title'])) {
echo $data['empresa_title'];
示例9: WSErro
$cadastra->ExeUpdate($catid, $data);
WSErro($cadastra->getError()[0], $cadastra->getError()[1]);
} else {
$Read = new WsAreaCategory();
$Read->setCategory_id($catid);
$Read->Execute()->Query("#category_id#");
if (!$Read->Execute()->getResult()) {
header("Location: painel.php?exe=area_category/index&empty=true");
} else {
$data = (array) $Read->Execute()->getResult()[0];
}
}
$checkCreate = filter_input(INPUT_GET, 'create', FILTER_VALIDATE_BOOLEAN);
if ($checkCreate && empty($cadastra)) {
$tipo = empty($data['category_parent']) ? 'seção' : 'categoria';
WSErro("A {$tipo} <b>{$data['category_title']}</b> foi cadastrada com sucesso no sistema! Continue atualizando a mesma!", WS_ACCEPT);
}
?>
<form name="PostForm" action="" method="post" enctype="multipart/form-data">
<label class="label">
<span class="field">Titulo:</span>
<input type="text" name="category_title" value="<?php
if (isset($data)) {
echo $data['category_title'];
}
?>
" />
</label>
示例10: date
$new = $post->getResult()[0];
$new->post_title = Check::Words($new->post_title, 9);
$new->post_content = Check::Words($new->post_content, 20);
$new->datetime = date('Y-m-d', strtotime($new->post_date));
$new->pubdate = date('d/m/Y H:i', strtotime($new->post_date));
$View->Show((array) $new, $tpl_m);
}
}
?>
<div class="last_news">
<?php
if ($cat) {
$post->Busca("cat={$cat}&limit=3&offset=1");
if (!$post->getResult()) {
WSErro("Desculpe, não temos mais noticias para serem exibidas aqui. Favor, volte depois!", WS_INFOR);
} else {
foreach ($post->getResult() as $news) {
$news->post_title = Check::Words($news->post_title, 12);
$news->datetime = date('Y-m-d', strtotime($news->post_date));
$news->pubdate = date('d/m/Y H:i', strtotime($news->post_date));
$View->Show((array) $news, $tpl_p);
}
}
}
?>
</div>
</section>
</section><!-- categorias -->
<div class="clear"></div>
示例11: AdminUsers
require_once '_models/AdminUsers.class.php';
$AdminUsers = new AdminUsers();
$AdminUsers->ExeUpdate($User, $ClienteData);
WSErro($AdminUsers->getError()[0], $AdminUsers->getError()[1]);
} else {
$Read = new WsUsers();
$Read->setUser_id($User);
$Read->Execute()->Query("#user_id#");
if ($Read->Execute()->getResult()) {
$ClienteData = (array) $Read->Execute()->getResult()[0];
unset($ClienteData['user_password']);
}
}
$checkCreate = filter_input(INPUT_GET, 'create', FILTER_VALIDATE_BOOLEAN);
if ($checkCreate && empty($AdminUsers)) {
WSErro("O Usuário <b>{$ClienteData['user_name']}</b> foi cadastrado com sucesso no sistema!", WS_ACCEPT);
}
?>
<form action = "" method = "post" name = "UserCreateForm">
<label class="label">
<span class="field">User:</span>
<input type = "text" name = "user_nickname" value="<?php
if (!empty($ClienteData['user_nickname'])) {
echo strtoupper($ClienteData['user_nickname']);
}
?>
" title = "Informe seu usuario" required />
</label>
示例12: filter_input_array
}
$dataLogin = filter_input_array(INPUT_POST, FILTER_DEFAULT);
if (!empty($dataLogin['AdminLogin'])) {
$login->ExeLogin($dataLogin);
if (!$login->getResult()) {
WSErro($login->getError()[0], $login->getError()[1]);
} else {
header('Location: painel.php');
}
}
$get = filter_input(INPUT_GET, 'exe', FILTER_DEFAULT);
if (!empty($get)) {
if ($get == 'restrito') {
WSErro('<b>Oppsss:</b> Acesso negado. Favor efetue login para acessar o painel!', WS_ALERT);
} elseif ($get == 'logoff') {
WSErro('<b>Sucesso ao deslogar:</b> Sua sessão foi finalizada. Volte sempre!', WS_ACCEPT);
}
}
?>
<form name="AdminLoginForm" action="" method="post">
<label>
<span>E-mail:</span>
<input type="email" name="user" />
</label>
<label>
<span>Senha:</span>
<input type="password" name="pass" />
</label>
示例13: unset
unset($data['sendContador']);
$data['user_id'] = !empty($_SESSION['userlogin']) ? $_SESSION['userlogin']['user_id'] : null;
$minContador = $AdImpress->MinContador($data['contadores_contador'], $Link->getLocal()[3]);
if (!$minContador) {
$AdImpress->ExeRegister($data);
header("Location: " . IMP_INCLUDE . $Link->getLocal()[2]);
} else {
WSErro("O contador deve ser maior que: <b>{$minContador[0]->contadores_contador}</b>", WS_INFOR);
}
}
if (!empty($Link->getLocal()[3]) && is_numeric($Link->getLocal()[3])) {
$impressora = $AdImpress->CheckStatus($Link->getLocal()[2], $Link->getLocal()[3]);
if ($impressora === "nulo") {
WSErro("Opsss! Esta impressora não existe ou não pertence a este posto.", WS_ERROR);
} elseif (!$impressora) {
WSErro("Impressora registrada com sucesso.", WS_ACCEPT);
} else {
?>
<form name="registrar" method="POST" class="form-inline form-group">
<input type="hidden" name="fk_impressora" value="<?php
echo $Link->getLocal()[3];
?>
" />
<input type="hidden" name="serial" value="<?php
echo $impressora->impressora_serial;
?>
" class="form-control"/>
<input type="text" name="serial" disabled="true" value="<?php
echo $impressora->impressora_serial;
?>
示例14: WSErro
</div>
</form>
</div>
<?php
} else {
?>
<a href="painel.php?exe=reports/educandos" class="btn btn-primary printNone"><i class="fa fa-file-text"></i> Nova Consulta</a>
<a href="javascript:window.print()" class="btn btn-success printNone" title="Imprimir"><i class="fa fa-print"></i> Imprimir</a>
<?php
echo $reportData['header'];
?>
<div class="col-lg-12 col-md-12 col-p-12">
<div class="table-responsive">
<table id="table-report-educandos" class="table table-hover table-bordered">
<?php
echo $reportData['table'];
?>
</table>
</div>
</div>
<?php
}
} else {
WSErro("<strong>Erro!</strong> Você entrou em uma página que não existe! Clique <a class='btn btn-danger btn-sm' href='painel.php'><i class='fa fa-undo'></i> aqui</a> para voltar à página inicial.", TW_ERROR);
$log->RecordLog("Acesso: " . filter_input(INPUT_SERVER, 'REQUEST_URI', FILTER_DEFAULT) . " | level: " . $userlogin['user_level'], "Erro: Acesso negado.");
}
?>
</article>
<div class="clearfix"></div>
</div> <!-- content home -->
示例15: filter_input
<div class="content form_create">
<article>
<h1>Usuários: <a href="painel.php?exe=users/create" title="Cadastrar Novo" class="user_cad">Cadastrar Usuário</a></h1>
<?php
$delUser = filter_input(INPUT_GET, 'delete', FILTER_VALIDATE_BOOLEAN);
$user = filter_input(INPUT_GET, 'users', FILTER_VALIDATE_INT);
require_once '_models/AdminUsers.class.php';
$AdminUsers = new AdminUsers();
if ($delUser) {
$AdminUsers->ExeDelete($user);
WSErro($AdminUsers->getError()[0], $AdminUsers->getError()[1]);
}
?>
<ul class="ultable">
<li class="t_title">
<span class="ui center">Res:</span>
<span class="un">Nome:</span>
<span class="ue">E-mail:</span>
<span class="ur center">Registro:</span>
<span class="ua center">Atualização:</span>
<span class="ul center">Nível:</span>
<span class="ed center">-</span>
</li>
<?php
$WsUsers = $AdminUsers->checkLast();
if ($WsUsers->getResult()) {