本文整理匯總了PHP中toba_recurso::link_css方法的典型用法代碼示例。如果您正苦於以下問題:PHP toba_recurso::link_css方法的具體用法?PHP toba_recurso::link_css怎麽用?PHP toba_recurso::link_css使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類toba_recurso
的用法示例。
在下文中一共展示了toba_recurso::link_css方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: generar_html
/**
* Generación de salida HTML para el contenedor de gadgets.
*/
function generar_html()
{
if (!empty($this->gadgets)) {
$this->configurar_consumos_globales_js();
echo toba_recurso::link_css('gadgets', 'screen');
echo "<div id='gadgets-container' class='gadgets-container'>";
$this->generar_html_gadgets();
echo '</div>';
echo toba_js::abrir();
echo '
var gc = document.getElementById("gadgets-container");
var e;
if(document.getElementsByClassName) {
e = document.getElementsByClassName("encabezado")[0];
} else {
var divs = document.getElementsByTagName("div");
for(var i in divs) {
if(divs[i].className == "encabezado") {
e = divs[i];
break;
}
}
}
gc.style.top = (e.clientHeight + 5)+"px";
';
echo toba_js::cerrar();
}
}
示例2: plantillas_css
protected function plantillas_css()
{
echo toba_recurso::link_css('toba', 'screen');
echo toba_recurso::link_css('toba_impr', 'print');
$ico = toba_recurso::imagen_proyecto('favicon.ico');
echo '<link rel="icon" href="' . $ico . '" type="image/x-icon" /><link rel="shortcut icon" href="' . $ico . '" type="image/x-icon" />';
}
示例3: generar_layout
function generar_layout()
{
$estilo = $this->menu->plantilla_css();
if ($estilo != '') {
echo toba_recurso::link_css($estilo, 'screen', false);
}
$this->menu->mostrar();
}
示例4: generar_layout
function generar_layout()
{
echo toba_recurso::link_css('tree');
$param = array('ajax-metodo' => 'get_estructura_arbol', 'ajax-modo' => 'D');
$opciones = array('servicio' => 'ajax', 'objetos_destino' => array($this->controlador()->get_id()));
$this->url = toba::vinculador()->get_url(null, null, $param, $opciones, true);
echo "<ul id='desc_tree' class=\"easyui-tree\"></ul>";
}
示例5: plantillas_css
protected function plantillas_css()
{
if (isset($this->menu)) {
$estilo = $this->menu->plantilla_css();
if ($estilo != '') {
echo toba_recurso::link_css($estilo, 'screen', false);
}
}
parent::plantillas_css();
}
示例6: generar_html_encabezado
protected function generar_html_encabezado()
{
echo "<html><head>";
$estilo = toba::proyecto()->get_parametro('estilo');
echo toba_recurso::link_css("toba_impr", 'screen');
echo toba_recurso::link_css("toba_impr", 'print');
echo "<style type='text/css' media='print'>\n\t\t\t.barra-impresion {\n\t\t\t\tdisplay: none;\t\t\t\t\n\t\t\t}\n\t\t\t</style>\n";
toba_js::cargar_consumos_basicos();
echo "</head><body>\n";
echo "<div class='barra-impresion'>";
echo "<button onclick='window.print()'>" . toba_recurso::imagen_toba('impresora.gif', true, null, null) . " Imprimir</button>";
echo "</div>";
echo $this->encabezado();
}
示例7: generar_html
function generar_html()
{
echo toba_recurso::link_css('highlighter', null, true);
parent::generar_html();
}