예제 #1
0
파일: start.php 프로젝트: jomadee/myteam
<?php

/**
*
* myteam
*
* @Versão 1.0
* @Licença http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
$botoes = array(array('href' => $backReal, 'img' => $_ll['tema']['icones'] . 'br_prev.png', 'title' => $backNome));
if (!isset($_GET['id'])) {
    $botoes[] = array('href' => $_ll['app']['home'] . '&id', 'img' => $_ll['app']['pasta'] . 'img/memb[16].png', 'title' => '');
}
echo app_bar('Quem somos', $botoes);
require_once (isset($_GET['id']) ? 'step' : 'home') . ".php";
예제 #2
0
파일: start.php 프로젝트: jomadee/fianaise
<?php

/**
*
* Fianaise | lliure 7.x
*
* @Versão 1.0
* @Desenvolvedor Jeison Frasson <*****@*****.**>
* @Entre em contato com o desenvolvedor <*****@*****.**> http://www.newsmade.com.br/
* @Licença http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
$navigi = new navigi();
$navigi->tabela = PREFIXO . 'fianaise';
$navigi->query = 'select * from ' . $navigi->tabela . ' order by id desc';
$navigi->delete = true;
$navigi->exibicao = 'lista';
$navigi->paginacao = 20;
$navigi->configSel = 'status';
$navigi->config['1']['botao'] = $navigi->config['0']['botao'] = array(array('link' => $_ll['app']['sen_html'] . '&id=#ID', 'modal' => '430xauto'));
$navigi->config['1']['botao'][0]['fa'] = 'fa-eye';
$navigi->config['1']['botao'][0]['class'] = 'bt_ativo';
$navigi->config['0']['botao'][0]['fa'] = 'fa-eye-slash';
echo app_bar('Fianaise', null) . '<div class="boxCenter">' . $navigi->monta(true) . '</div>';