本文整理汇总了PHP中Evento类的典型用法代码示例。如果您正苦于以下问题:PHP Evento类的具体用法?PHP Evento怎么用?PHP Evento使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Evento类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: getListEventoArtistaLugar
function getListEventoArtistaLugar($condicion = NULL, $parametros = array())
{
if ($condicion === null) {
$condicion = "";
} else {
// $condicion="where $condicion";
$condicion = $condicion;
}
/**$sql ="SELECT e.*, l.*, a.*
from evento e inner join lugar l
on e.ID_lugar=l.ID_lugar
inner join artista a
on e.ID_artista=a.ID_artista
$condicion ;";*/
$sql = "SELECT *\nfrom evento e, artista a\nwhere e.ID_artista=a.ID_artista and {$condicion}";
echo "<BR>COLSUTA: " . $sql . "<BR>";
$this->bd->send($sql, $parametros);
$r = array();
$contador = 0;
while ($fila = $this->bd->getRow()) {
$evento = new Evento();
$evento->set($fila);
$lugar = new Lugar();
$lugar->set($fila, 6);
$artista = new Artista();
$artista->set($fila, 9);
$r[$contador]["evento"] = $evento;
$r[$contador]["artista"] = $artista;
$r[$contador]["lugar"] = $lugar;
$contador++;
return $r;
}
}
开发者ID:EvaGarzonBeltran,项目名称:entradas,代码行数:33,代码来源:ManageRelaciones.php
示例2: editar
public static function editar()
{
$agenda = new Agenda();
$agenda->selecionarPorId($_GET['id']);
$evento = new Evento();
$evento->selecionarPorId($agenda->fkEvento);
$sala = new Sala();
$salas = $sala->listar();
$arrListaDatas = Funcao::retornaDataIntervalo($evento->dataInicio, $evento->dataFim);
$arrHoraInicial = Funcao::intervaloDeHoraPorMinutos('07:00', '23:30');
$arrHoraFinal = Funcao::intervaloDeHoraPorMinutos('07:00', '23:30');
if (!empty($_POST)) {
$agenda = new Agenda();
foreach ($_POST as $pKey => $p) {
if ($pKey == 'dia') {
$agenda->{$pKey} = Funcao::dateFormatToDatabase($p);
} else {
$agenda->{$pKey} = $p;
}
}
$idAgenda = $agenda->salvar();
$evento = new Evento();
$evento->selecionarPorId($_POST['fkEvento']);
self::redirecionar(Configuracao::$baseUrl . self::$viewController . '/listar/' . $evento->id . '-' . Funcao::prepararLink($evento->nome) . Configuracao::$extensaoPadrao);
}
self::$corpo = "editar";
self::$variaveis = array('agenda' => $agenda, 'salas' => $salas, 'evento' => $evento, 'dias' => $arrListaDatas, 'horaInicial' => $arrHoraInicial, 'horaFinal' => $arrHoraFinal);
self::renderizar(self::$viewController);
}
开发者ID:GDGPVH,项目名称:sistemaEvento,代码行数:29,代码来源:AgendaController.php
示例3: grava
function grava($ID, $dia, $mes, $ano, $local, $descricao)
{
$temerro = 0;
$x = 0;
if (empty($local)) {
echo "<tr><td>Informe o local do evento </td></tr>" . "\n";
$temerro = 1;
}
if (!checkdate($mes, $dia, $ano)) {
echo "<tr><td>Data do evento inválida !</td></tr>" . "\n";
$temerro = 1;
}
if (empty($descricao)) {
echo "<tr><td>Descreva o evento </td></tr>" . "\n";
$temerro = 1;
}
if ($temerro == 1) {
include "volta.php";
} else {
$eve = new Evento($ID);
$eve->setLocal($local);
$eve->setDescricao($descricao);
$eve->setData($ano . "/" . $mes . "/" . $dia);
$eve->Grava();
echo '<tr><td><br></td></tr>' . "\n";
echo "<tr><td>Evento gravado com sucesso !</td></tr>\n";
echo '<tr><td><br></td></tr>' . "\n";
echo '<tr><td><br></td></tr>' . "\n";
echo '<tr><td><a href="lst_cadeventos.php">OK</a></td></tr>' . "\n";
}
}
开发者ID:alencarmo,项目名称:OCF,代码行数:31,代码来源:prc_processo.php
示例4: handleCreate
public function handleCreate()
{
try {
if (Request::ajax()) {
$error = false;
$idEvento = Input::get('idevento');
$eventoUpdated = Evento::find($idEvento);
if ($eventoUpdated) {
$eventoUpdated->idconfiguraciontrampa = Input::get('idctrampa');
$eventoUpdated->fechaevento = Input::get('fechaevento');
$eventoUpdated->idclasificaiontrampa = Input::get('idclasificacion');
$eventoUpdated->semana = Input::get('semana');
$eventoUpdated->observaciones = Input::get('observaciones');
$eventoUpdated->save();
} else {
$evento = new Evento();
$evento->idconfiguraciontrampa = Input::get('idctrampa');
$evento->fechaevento = Input::get('fechaevento');
$evento->idclasificaiontrampa = Input::get('idclasificacion');
$evento->semana = Input::get('semana');
$evento->observaciones = Input::get('observaciones');
$evento->save();
}
$resultado = array('error' => false, 'msg' => 'created successfully');
return Response::json($resultado);
}
} catch (Exception $ex) {
$resultado = array('error' => true, 'msg' => 'Error saving data');
return Response::json($resultado);
}
}
开发者ID:rmeza,项目名称:ipm,代码行数:31,代码来源:EventoController.php
示例5: getListadoEventoss
public static function getListadoEventoss($usuario_id)
{
$obj = new Evento();
$conditions = "usuario_id = {$usuario_id}";
$columns = "id, start, end, color, author, notes, urlFile, idPosicion, hour1, day1, hour2, day2, fileUrl, networks, description";
return $obj->find("columns: {$columns}", "conditions: {$conditions}");
}
开发者ID:arleincho,项目名称:bee,代码行数:7,代码来源:evento.php
示例6: sendMail
private function sendMail(Evento $evento, $use_swift = true)
{
if ($use_swift) {
$this->sendWithSwift('[email protected]', "nuovo evento: " . $evento->getTitolo(), "Ciao, \n è stato pubblicato un nuovo evento", '[email protected]');
return;
}
$this->sendMailDefault('[email protected]', "nuovo evento: " . $evento->getTitolo(), "Ciao, \n è stato pubblicato un nuovo evento", '[email protected]');
}
开发者ID:p16,项目名称:phpday2010,代码行数:8,代码来源:EventoService.php
示例7: testSave
public function testSave()
{
$data = array('titolo' => 'phpday2010!!!', 'descrizione' => 'questo è il talk per il phpday 2010!', 'data_inizio' => '2010-05-14', 'data_fine' => '2010-05-15');
$evento = new Evento();
$evento->fromArray($data);
$evento->save($this->pdo);
$xml_dataset = $this->createFlatXMLDataSet(dirname(__FILE__) . '/../fixtures/evento.xml');
$this->assertDataSetsEqual($xml_dataset, $this->getConnection()->createDataSet(array('evento')));
}
开发者ID:p16,项目名称:phpday2010,代码行数:9,代码来源:EventoTest.php
示例8: listar
public static function listar()
{
$evento = new Evento();
$evento->selecionarPorId($_GET['id']);
$certificado = new Certificado();
$listaDeCertificados = $certificado->listarPorIdEvento($_GET['id']);
self::$variaveis = array('listaDeCertificados' => $listaDeCertificados, 'evento' => $evento);
self::$corpo = "listar";
self::renderizar(self::$viewController);
}
开发者ID:GDGPVH,项目名称:sistemaEvento,代码行数:10,代码来源:CertificadoController.php
示例9: getList
function getList()
{
$this->bd->select($this->tabla, '*', "1=1", array(), "nombre_evento");
$r = array();
while ($fila = $this->bd->getRow()) {
$evento = new Evento();
$evento->set($fila);
$r[] = $evento;
}
return $r;
}
开发者ID:EvaGarzonBeltran,项目名称:entradas,代码行数:11,代码来源:ManageEvento.php
示例10: listar
public function listar($ordem = "ASC", $campo = self::ID)
{
$info = parent::listar($ordem, $campo);
if (!empty($info)) {
$temp = new Evento($info[self::ID]);
parent::resgatarObjetos($info);
$temp->setData(new DataHora($info[self::DATA]));
$temp->setURL($info[parent::URL]);
$temp->setTexto($info[parent::TEXTO]);
$temp->local = $info[self::LOCAL];
return $temp;
}
}
开发者ID:jhonnybail,项目名称:marktronic,代码行数:13,代码来源:ListaEventos.php
示例11: parametros
/**
*
* @param AppController $class
*/
protected function parametros(AppController $class)
{
$endereco = null;
$modelEventos = new Evento();
$meusEventos = $modelEventos->verificaEventosParaPromoter(Session::read('Usuario.pessoas_id'));
if (Session::check('Empresa')) {
$modelEndereco = new Endereco();
$endereco = $modelEndereco->findEnderecosEmpresa(Session::read('Empresa.empresas_id'));
$endereco = $endereco[0];
}
$class->set('title_layout', 'Painel Administrativo');
$class->set('endereco', $endereco);
$class->set('meusEventos', $meusEventos);
}
开发者ID:brunoblauzius,项目名称:sistema,代码行数:18,代码来源:PainelPromoter.php
示例12: testPostEventoCorrecto
public function testPostEventoCorrecto()
{
$destino = Enhance::getCodeCoverageWrapper('EventosControllerClass');
$destino->postEvento();
$eventos = new Evento();
$eventos->nombre = 'Concirto David Bisbal';
$eventos->fecha = '2014-08-14';
$eventos->hora = '23:00';
$eventos->tipo = 'B';
$eventos->aforo = '1000';
$eventos->descripcion = 'Concierto del famoso almeriense David Bisbal en Vera (Almeria)';
$eventos->save();
$this->call('POST', 'eventos');
$this->assertRedirectedToRoute('eventos');
}
开发者ID:igj281,项目名称:equipo01hmis,代码行数:15,代码来源:EventosControllerTest.php
示例13: getDashboard
public function getDashboard()
{
$users = User::where('padre_id', '=', Auth::user()->id)->orderBy('id', 'DESC')->take(5)->get();
$eventos = Evento::where('user_id', '=', Auth::user()->id)->orderBy('id', 'DESC')->take(5)->get();
$ventas = Venta::where('user_id', '=', Auth::user()->id)->orderBy('id', 'DESC')->take(5)->get();
$this->layout->content = View::make('admin/dashboard')->with('users', $users)->with('eventos', $eventos)->with('ventas', $ventas);
}
开发者ID:awdesarrollos,项目名称:appshop,代码行数:7,代码来源:HomeController.php
示例14: run
public function run()
{
$faker = Faker::create();
foreach (range(1, 10) as $index) {
Evento::create([]);
}
}
开发者ID:waldenylson,项目名称:alfredapp,代码行数:7,代码来源:EventosTableSeeder.php
示例15: eliminarevento
public function eliminarevento()
{
include './view/vistaeventos.php';
include "./model/agregarevento_model.php";
if (isset($_SESSION['idusuario']) && $_SESSION['idusuario'] != NULL && $_SESSION['admin'] === '1') {
$evento = new Evento();
$reg = array('id' => $_REQUEST['id']);
$vista = new Vistaeventos();
$evento->eliminarevento($reg);
header('Location: index.php?action=eventos');
} else {
include './view/vistaindex.php';
$vista = new Vistaindex();
$vista->mostrar();
}
}
开发者ID:Unicen-Tupar,项目名称:mirazabal,代码行数:16,代码来源:controlador.php
示例16: run
public function run()
{
$participants = DB::table('event_participant')->get();
foreach ($participants as $participant) {
$player = Player::find($participant->player_id);
$user = User::find($participant->user_id);
$event = Evento::find($participant->event_id);
$payment = Payment::find($participant->payment_id);
$uuid = Uuid::generate();
$new = new Participant();
$new->id = $uuid;
$new->firstname = $player->firstname;
$new->lastname = $player->lastname;
$new->due = $event->getOriginal('fee');
$new->early_due = $event->getOriginal('early_fee');
$new->early_due_deadline = $event->early_deadline;
$new->method = 'full';
$new->plan_id = Null;
$new->player_id = $player->id;
$new->event_id = $participant->event_id;
$new->accepted_on = $participant->created_at;
$new->accepted_by = $user->profile->firstname . " " . $user->profile->lastname;
$new->accepted_user = $participant->user_id;
$new->status = 1;
$new->created_at = $participant->created_at;
$new->updated_at = $participant->updated_at;
$new->save();
$update = Item::where('payment_id', '=', $payment->id)->firstOrFail();
$update->participant_id = $uuid;
$update->save();
}
}
开发者ID:illuminate3,项目名称:league-production,代码行数:32,代码来源:FollowersTableSeeder.php
示例17: indexAction
public function indexAction()
{
$eventos = Evento::findEventosActive()->getData();
$paginator = new Zend_Paginator(new Zend_Paginator_Adapter_Array($eventos));
$paginator->setItemCountPerPage(20)->setPageRange(5)->setCurrentPageNumber($this->_request->getParam('page', 1));
$this->view->eventos = $paginator;
}
开发者ID:Neozeratul,项目名称:Intermodels,代码行数:7,代码来源:IndexController.php
示例18: register_visualization
public function register_visualization($document_id)
{
$documento = \Documento::find($document_id);
if (!$documento) {
return \Response::json(['error' => 'No existe ningun documento con id = ' . $document_id], 200);
}
$auth_token = \Request::header('authorization');
$user = \User::where('auth_token', '=', $auth_token)->first();
$idevento = \Input::get('session_id');
if ($idevento) {
$evento = \Evento::find($idevento);
if (!$evento) {
return \Response::json(['error' => 'No existe ninguna sesión con id = ' . $idevento], 200);
}
$v = new \Visualizacion();
$v->idusers = $user->id;
$v->ideventos = $evento->ideventos;
$v->iddocumentos = $document_id;
$v->save();
} else {
// obtener todos los eventos asociados al documento
$eventos = \DocumentosEvento::where('iddocumentos', '=', $document_id)->get();
foreach ($eventos as $evento) {
$v = new \Visualizacion();
$v->idusers = $user->id;
$v->ideventos = $evento->ideventos;
$v->iddocumentos = $document_id;
$v->save();
}
}
return \Response::json(['success' => 1], 200);
}
开发者ID:EMerino236,项目名称:afiperularavel,代码行数:32,代码来源:DocumentosController.php
示例19: fire
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
//Coger eventos del día siguiente
$events = Evento::getNextDayEventos()->get();
foreach ($events as $e) {
//Coger los gcm_regids de los voluntarios asignados al evento que pueden recibir notificaciones
$registration_ids = Asistencia::getUsersToNotificate($e->ideventos)->get()->lists('gcm_token');
$title = 'AFI Perú - Evento';
$message = 'Recordatorio de evento: ' . $e->nombre . ' - ' . $e->fecha_evento;
$type = 1;
$m = ['title' => $title, 'message' => $message, 'type' => $type];
$response = Helpers::pushGCM($registration_ids, $m);
//$this->info(var_dump($response));
}
///Coger todos los padrinos
$sponsors = Padrino::getActivePadrinosPushInfo()->get();
foreach ($sponsors as $s) {
//Si el padrino tiene activado el push de pagos y tiene registadro su gcm_token
if ($s->push_pagos && $s->gcm_token) {
//Buscar si hay una deuda pendiente para el día siguiente
$fee = CalendarioPago::getCalendarioPagoPendienteNextDayByPadrino($s->idpadrinos)->first();
if ($fee) {
//$this->info(var_dump($s->gcm_regid));
$title = 'AFI Perú - Padrino';
$message = 'Recordatorio de pago: ' . $fee->vencimiento;
$type = 2;
$m = ['title' => $title, 'message' => $message, 'type' => $type];
$response = Helpers::pushGCM(array($s->gcm_token), $m);
//$this->info(var_dump($response));
}
}
}
}
开发者ID:EMerino236,项目名称:afiperularavel,代码行数:38,代码来源:PushGCM.php
示例20: actionIndex
public function actionIndex()
{
$username = Yii::app()->user->name;
$modelU = Utilizador::model();
$oid = $modelU->findByAttributes(array('username'=>$username))->oid;
$eventosFavoritos = Evento::getEventosFavoritosUser($oid,5);
$this->render('index',array('data'=>$eventosFavoritos));
}
开发者ID:rafaelumlei,项目名称:EngenhariaWeb,代码行数:8,代码来源:FavoritosController.php
注:本文中的Evento类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论