本文整理汇总了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();
}