当前位置: 首页>>代码示例>>PHP>>正文


PHP toba_recurso::link_css方法代码示例

本文整理汇总了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();
        }
    }
开发者ID:emma5021,项目名称:toba,代码行数:31,代码来源:toba_contenedor_gadgets.php

示例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" />';
 }
开发者ID:emma5021,项目名称:toba,代码行数:7,代码来源:toba_tp_basico.php

示例3: generar_layout

 function generar_layout()
 {
     $estilo = $this->menu->plantilla_css();
     if ($estilo != '') {
         echo toba_recurso::link_css($estilo, 'screen', false);
     }
     $this->menu->mostrar();
 }
开发者ID:emma5021,项目名称:toba,代码行数:8,代码来源:pant_final.php

示例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>";
 }
开发者ID:emma5021,项目名称:toba,代码行数:8,代码来源:pant_descripciones.php

示例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();
 }
开发者ID:emma5021,项目名称:toba,代码行数:10,代码来源:toba_tp_normal.php

示例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();
 }
开发者ID:emma5021,项目名称:toba,代码行数:14,代码来源:toba_impr_html.php

示例7: generar_html

 function generar_html()
 {
     echo toba_recurso::link_css('highlighter', null, true);
     parent::generar_html();
 }
开发者ID:emma5021,项目名称:toba,代码行数:5,代码来源:ci_analizador_sql.php


注:本文中的toba_recurso::link_css方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。