本文整理汇总了PHP中Lista类的典型用法代码示例。如果您正苦于以下问题:PHP Lista类的具体用法?PHP Lista怎么用?PHP Lista使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Lista类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: toLista
public function toLista($o)
{
$lista = new Lista();
while ($row = $this->fetchArray($o)) {
$lista->addElement($row);
}
return $lista;
}
开发者ID:DaniloEpic,项目名称:slast,代码行数:8,代码来源:Persistence.php
示例2: listar
public function listar($ordem = "ASC", $campo = self::ID)
{
$info = parent::listar($ordem, $campo);
//echo count($info);
if (!empty($info)) {
$end = new PedidoEnderecoEntrega($info[self::ID]);
$end->logradouro = $info[self::LOGRADOURO];
$end->numero = $info[self::NUMERO];
$end->complemento = $info[self::COMPLEMENTO];
$end->bairro = $info[self::BAIRRO];
$end->tipo = $info[self::TIPO];
$end->prazo = $info[self::PRAZO];
$end->setValor($info[self::VALOR]);
$end->setCep($info[self::CEP]);
$lC = new ListaCidades();
$lC->condicoes('', $info[self::CIDADE], ListaCidades::ID);
if ($lC->getTotal() > 0) {
$c = $lC->listar();
$end->setCidade($c);
$end->setEstado($c->getEstado());
$end->setPais($c->getPais());
}
return $end;
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:25,代码来源:ListaPedidoEnderecoEntregas.php
示例3: json_pages
public function json_pages(Lista $m)
{
$c = $this->comecando_em / $this->por_pagina + 1;
$cur = "\"current\":\"" . $c . "\"";
$pre = "\"previous\":false";
if ($this->comecando_em > 0) {
$pre = "\"previous\":true";
}
$nex = "\"next\":false";
if ($m->getSize() > $this->por_pagina) {
$nex = "\"next\":true";
}
$las = "\"last\":true";
if ($m->getSize() > $this->maximo) {
$las = "\"last\":false";
}
return "{ " . $cur . "," . $pre . "," . $nex . "," . $las . " }";
}
开发者ID:DaniloEpic,项目名称:slast,代码行数:18,代码来源:LimitHelper.php
示例4: Show_list_travel
public function Show_list_travel($empleado)
{
if ($_SESSION["perfil"] == 5) {
$Lista = new Lista();
$query = " select t_id,t_etiqueta,date(t_fecha_registro), (select concat(u_nombre,' ',u_paterno,' ',u_materno) from usuario where u_id=t_iniciador) as atiende, (select svi_fecha_salida from sv_itinerario where svi_solicitud = solicitud_viaje.sv_id group by svi_solicitud) as fechaSalida, sv_agente_travel from tramites inner join solicitud_viaje on (solicitud_viaje.sv_tramite= tramites.t_id) where t_etapa_actual=4 and t_owner=" . $_SESSION["idusuario"] . " and t_cerrado=false and t_cancelado=false and t_flujo=3 order by t_id desc";
$Lista->Herramientas("E", "./index.php?view=");
$Lista->Cabeceras("Folio");
$Lista->Cabeceras("Referencia");
$Lista->Cabeceras("Fecha Registro");
$Lista->Cabeceras("Iniciador");
$Lista->Cabeceras("Fecha Salida");
$Lista->Cabeceras("Agente");
//$Lista->Cabeceras("$ Solc.","","number");
}
$Lista->muestra_lista($query, 0, false, -1, "", 15);
}
开发者ID:hackdracko,项目名称:belcorp,代码行数:16,代码来源:Notificacion.php
示例5: semana
public static function semana($data)
{
$semana = new Lista();
$dom = $data->adddia(0 - $data->diadasemana());
$seg = $dom->adddia(1);
$ter = $seg->adddia(1);
$qua = $ter->adddia(1);
$qui = $qua->adddia(1);
$sex = $qui->adddia(1);
$sab = $sex->adddia(1);
$semana->addElement($dom);
$semana->addElement($seg);
$semana->addElement($ter);
$semana->addElement($qua);
$semana->addElement($qui);
$semana->addElement($sex);
$semana->addElement($sab);
$semana->paginar();
return $semana;
}
开发者ID:DaniloEpic,项目名称:slast,代码行数:20,代码来源:Calendario.php
示例6: enviarPacote
public function enviarPacote($de = '', $html = false)
{
Email::$msg = $this->getTexto()->texto;
if ($html) {
Email::$html = $html;
}
if ($de) {
Email::$de = $de;
}
Email::$assunto = $this->getTexto()->titulo;
if ($this->getStatus() == self::PARADO) {
self::criarListaParaEnvio($this);
}
$l = new Lista('mailing_pacotes_envio');
$l->condicoes('', $this->getId(), 'mailing');
$total = $l->getTotal();
if ($total > Sistema::$emailsPorHora) {
$l->setParametros(Sistema::$emailsPorHora, 'limite');
$this->setStatus(self::ENVIANDO);
} else {
$this->setStatus(self::PARADO);
}
$lM = new ListaMailings();
$lM->alterar($this);
$con = BDConexao::__Abrir();
while ($rs = $l->listar()) {
Email::$para = $rs['email'];
Email::enviar();
$con->executar("DELETE FROM " . Sistema::$BDPrefixo . "mailing_pacotes_envio WHERE mailing = '" . $this->getId() . "' AND email = '" . $rs['email'] . "'");
$l->setParametros(0);
$l->setParametros($l->getParametros('limite') - 1, 'limite');
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:33,代码来源:Mailing.php
示例7: listar
public function listar($ordem = "ASC", $campo = self::ID)
{
$info = parent::listar($ordem, $campo);
if (!empty($info)) {
$temp = new Estado($info[self::ID]);
$temp->nome = $info[self::NOME];
$temp->uf = $info[self::UF];
$lP = new ListaPaises();
$lP->condicoes('', $info[self::PAIS], ListaPaises::ID);
if ($lP->getTotal() > 0) {
$temp->setPais($lP->listar());
}
return $temp;
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:15,代码来源:ListaEstados.php
示例8: minhaLista
/**
* @todo renderiza a pagina da minha lista
*/
public function minhaLista()
{
try {
$this->addJs(array('js/minhaLista.init'));
$token = null;
$listaModel = new Lista();
if (isset($_GET['param'])) {
$token = $_GET['param'];
}
$record = $this->Evento->find('first', array('md5(id)' => $token));
$record = array_shift($record);
if (!empty($record)) {
unset($_SESSION['Form']);
$_SESSION['Form']['eventos_id'] = intval($record['Evento']['id']);
}
$lista = $listaModel->listaDisponivel($this->pessoas_id);
$this->set('evento', $record);
$this->set('lista', $lista);
$this->render();
} catch (Exception $ex) {
echo $ex->getMessage();
}
}
开发者ID:brunoblauzius,项目名称:sistema,代码行数:26,代码来源:EventosController.php
示例9: deletar
public function deletar(TicketPost $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$t->getArquivo()->deleteArquivo();
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaTicketPosts.php
示例10: deletar
public function deletar(Mailing $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
$this->con->deletar(Sistema::$BDPrefixo . "mailing_pacotes_envio", "WHERE mailing = '" . $t->getId() . "'");
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaMailings.php
示例11: deletar
public function deletar(ProdutoMarca $m)
{
parent::deletar($m);
$where = "WHERE " . self::ID . " = '" . $m->getId() . "'";
Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataProdutoMarcas . $m->getImagem()->nome . '.' . $m->getImagem()->extensao);
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:7,代码来源:ListaProdutoMarcas.php
示例12: suorita
function suorita()
{
parent::suorita();
if ($this->order === 'oikeaaika') {
$this->order = 'pvm';
}
}
开发者ID:kaartine,项目名称:Rysty,代码行数:7,代码来源:pelit.php
示例13: deletar
public function deletar(Banner $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataBanners . $t->getImagem()->nome . "." . $t->getImagem()->extensao);
Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataBanners . $t->getFlash());
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaBanners.php
示例14: deletar
public function deletar(Musica $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$arquivo = $t->getMusica()->nome . "." . $t->getMusica()->extensao;
Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataDiscografia . $arquivo);
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaMusicas.php
示例15: deletar
public function deletar(UploadDownloadArquivo $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$arquivo = $t->getArquivo()->nome . "." . $t->getArquivo()->extensao;
Arquivos::__DeleteArquivo(Sistema::$caminhoDiretorio . Sistema::$caminhoDataUploadsDownloads . $arquivo);
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:8,代码来源:ListaUploadDownloadArquivos.php
示例16: listar
public function listar($ordem = "ASC", $campo = 'id')
{
$info = parent::listar($ordem, $campo);
if (!empty($info)) {
$at = new Atividade($info['id']);
$at->titulo = $info['titulo'];
return $at;
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:9,代码来源:ListaAtividades.php
示例17: deletar
public function deletar(Galeria $g)
{
parent::deletar($g);
$where = "WHERE " . self::ID . " = '" . $g->getId() . "'";
while ($img = $g->getImagens()->listar("ASC")) {
$g->getImagens()->deletar($img);
$g->getImagens()->setParametros(0);
}
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaGalerias.php
示例18: deletar
public function deletar(BannerCategoria $t)
{
if ($t->getBanners()->getTotal() > 0) {
throw new Exception("Está categoria possui banners cadastrados, não foi possível removê-la!");
} else {
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaBannerCategorias.php
示例19: deletar
public function deletar(Ticket $t)
{
parent::deletar($t);
$where = "WHERE " . self::ID . " = '" . $t->getId() . "'";
while ($tP = $t->getPostagens()->listar()) {
$t->getPostagens()->deletar($tP);
$t->getPostagens()->setParametros(0);
}
$this->con->deletar(Sistema::$BDPrefixo . $this->tabela, $where);
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaTickets.php
示例20: listar
public function listar($ordem = "ASC", $campo = self::ID)
{
$info = parent::listar($ordem, $campo);
if (!empty($info)) {
$temp = new Pais($info[self::ID]);
$temp->nome = $info[self::NOME];
$temp->ddi = $info[self::DDI];
return $temp;
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:10,代码来源:ListaPaises.php
注:本文中的Lista类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论