本文整理汇总了PHP中eHelper::componente_tabela_nome方法的典型用法代码示例。如果您正苦于以下问题:PHP eHelper::componente_tabela_nome方法的具体用法?PHP eHelper::componente_tabela_nome怎么用?PHP eHelper::componente_tabela_nome使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eHelper
的用法示例。
在下文中一共展示了eHelper::componente_tabela_nome方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$doc =& JFactory::getDocument();
$html = '';
$cadastro = '';
$cadastros = array();
// arquivos
$file_js_path = ECOMP_PATH . DS . $pasta . DS . $arquivo . '.js';
$file_js_url = ECOMP_URL_TEMPLATE . "/html/ecomp/{$pasta}/{$arquivo}.js";
$file_css_path = ECOMP_PATH . DS . $pasta . DS . $arquivo . '.css';
$file_css_url = ECOMP_URL_TEMPLATE . "/html/ecomp/{$pasta}/{$arquivo}.css";
$file_php = ECOMP_PATH . DS . $pasta . DS . $arquivo . '.php';
$file_html = ECOMP_PATH . DS . $pasta . DS . $arquivo . '.html';
$file_tipo = ECOMP_PATH_MEDIA . DS . 'views' . DS . 'padrao' . DS . $tipo . '.php';
// paths
$path_templates = ECOMP_PATH_MEDIA . DS . 'views' . DS . 'padrao' . DS . 'templates';
// nome da tebela do componente
$tabela = eHelper::componente_tabela_nome($idcomponente);
// envia vars para o template
$smarty->assign('id', $id);
$smarty->assign('idcategoria', $idcategoria);
$smarty->assign('idcomponente', $idcomponente);
// executa a funçao de acordo com o tipo selecionado
if ($tipo != -1) {
if (file_exists($file_tipo)) {
require_once $file_tipo;
} else {
JError::raiseError(404, 'Arquivo não encontrado!');
}
}
// tenta abrir o js, css e php
if (file_exists($file_js_path)) {
$doc->addScript($file_js_url);
示例2: EcompBuildRoute
function EcompBuildRoute(&$query)
{
$vars = $query;
$menu =& JSite::getMenu();
$item =& $menu->getItem($vars['Itemid']);
$params = $menu->getParams($vars['Itemid']);
$idcomponente = $params->get('idcomponente');
$idcadastro = isset($vars['id']) ? $vars['id'] : $params->get('idcadastro');
$segments = array();
$values = array();
$conf =& JFactory::getConfig();
// abre a tabela de regras de rotas
$r = new JCRUD(ECOMP_TABLE_ROUTERS_RULES);
$r = $r->busca("WHERE itemid = '{$item->id}' AND published = '1' AND trashed != '1' ORDER BY ordering ASC");
foreach ($r as $rules) {
if ($rules->type == '1') {
// nome da tebela do componente
$idcomp = $rules->idcomponente > 0 ? $rules->idcomponente : $idcomponente;
$tabela = eHelper::componente_tabela_nome($idcomp);
$c = new JCRUD($tabela);
$x = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : '0';
$c = $c->busca_por_id($x);
if ($c) {
$campo = $rules->alias1;
if ($campo == '' || JFilterOutput::stringURLSafe($c->{$campo}) == '') {
$campo = $rules->alias2;
}
$segments[] = JFilterOutput::stringURLSafe($c->{$campo});
$values[$rules->get_var] = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : $rules->get_value;
}
}
if ($rules->type == '2') {
$segments[] = JFilterOutput::stringURLSafe($rules->alias1);
$values[$rules->get_var] = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : $rules->get_value;
}
if ($rules->type == '3') {
$s = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : $rules->get_value;
$segments[] = JFilterOutput::stringURLSafe($s);
$values[$rules->get_var] = $s;
}
// categoria
if ($rules->type == '4') {
$c = new JCRUD(ECOMP_TABLE_CATEGORIAS);
$y = (int) $rules->get_value;
$x = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : $y;
$c = $c->busca_por_id($x);
if ($c) {
$campo = 'alias';
if (JFilterOutput::stringURLSafe($c->{$campo}) == '') {
$campo = 'nome';
}
$segments[] = JFilterOutput::stringURLSafe($c->{$campo});
$values[$rules->get_var] = isset($vars[$rules->get_var]) ? $vars[$rules->get_var] : $rules->get_value;
}
}
// exclui a var caso exista
if (isset($query[$rules->get_var])) {
unset($query[$rules->get_var]);
}
}
// exclui a var view 'padrao'
if (isset($vars['view']) && $vars['view'] == 'padrao') {
unset($query['view']);
}
////////////////////////////////////////////
//// CACHE
///////////////////////////////////////////
if (count($segments)) {
// verifica se o sef_suffix esta ativado
$sef_suffix = $conf->getValue('config.sef_suffix') ? '.html' : '';
$url = join('/', $segments) . $sef_suffix;
$params = http_build_query($values, '', '&');
$dados = array('id' => 0, 'itemid' => $item->id, 'url' => $url, 'params' => $params);
// adicionao a rota na tabela cache
$c = new JCRUD(ECOMP_TABLE_ROUTERS_CACHE, $dados);
$cc = $c->busca("WHERE itemid = '{$item->id}' AND url = '{$url}'");
if (count($cc)) {
$c->id = $cc[0]->id;
$c->update();
} else {
$c->insert();
}
}
return $segments;
}