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


PHP getTheme函数代码示例

本文整理汇总了PHP中getTheme函数的典型用法代码示例。如果您正苦于以下问题:PHP getTheme函数的具体用法?PHP getTheme怎么用?PHP getTheme使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getTheme函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: displayFooter

/**
 * displayFooter 
 * 
 * @return void
 */
function displayFooter()
{
    global $currentUserId, $TMPL;
    echo '
        </div><!-- /centercontent -->';
    include_once getTheme($currentUserId) . 'footer.php';
}
开发者ID:lmcro,项目名称:fcms,代码行数:12,代码来源:template.php

示例2: lessc

 public function lessc()
 {
     if (!isset($_GET['f'])) {
         $this->route->run('/error/404');
         return;
     }
     $f = $_GET['f'];
     $key = $this->config->site->mediaVersion;
     header('Content-type: text/css');
     header(sprintf('Last-Modified: %s GMT', gmdate('D, d M Y H:i:s', strtotime('-1 year'))));
     header(sprintf('Etag: %s', md5(sprintf('%s~%s', $key, $f))));
     if (!is_array($f)) {
         $f = (array) explode(',', $f);
     }
     $theme = getTheme();
     $less = new lessc();
     foreach ($f as $file) {
         $fullPath = realpath(sprintf('%s/%s/stylesheets/%s', $this->config->paths->themes, $theme->getThemeName(), $file));
         if (file_exists($fullPath) && preg_match('/\\.less$/', $file) === 1 && strpos($fullPath, $this->config->paths->themes) === 0) {
             if ($this->config->site->mode === 'prod') {
                 $cacheFile = realpath(sprintf('%s/assets/cache', $this->config->paths->docroot)) . '/' . md5($theme->getThemeName() . $file) . '-' . basename($file) . '.css.cache';
                 $cssOutput = $this->getCompiledLessFile($fullPath, $cacheFile, $less);
             } else {
                 $cssOutput = $this->pipeline->normalizeUrls(dirname($fullPath), $less->compileFile($fullPath));
             }
             echo $cssOutput;
         }
     }
 }
开发者ID:gg1977,项目名称:frontend,代码行数:29,代码来源:AssetsController.php

示例3: getZones

function getZones($position, $collapse = true, $dispmode = "STD")
{
    $module = CopixRequest::get('module');
    $user = _currentUser();
    $userstatus = $user->isConnected() ? 'connected' : 'visitor';
    $layout = getTheme("zones", $dispmode);
    $jzones_default = isset($layout->{$userstatus}->default->{$position}) ? $layout->{$userstatus}->default->{$position} : array();
    $jzones_module = isset($layout->{$userstatus}->{$module}->{$position}) ? $layout->{$userstatus}->{$module}->{$position} : array();
    $jzones = array_merge((array) $jzones_default, (array) $jzones_module);
    if (empty($jzones)) {
        if ($collapse) {
            echo '<div class="collapse"></div>';
        } else {
            echo '<div class="filler"></div>';
        }
    } else {
        foreach ($jzones as $zone) {
            if ($zone->params != "") {
                $params = $zone->params;
                $params = unserialize($params);
                $zoneContent = CopixZone::process($zone->supplier . '|' . $zone->zone, $params);
            } else {
                $zoneContent = CopixZone::process($zone->supplier . '|' . $zone->zone);
            }
            if (!$zoneContent) {
                continue;
            }
            $id = $position == 'popup' ? 'id="' . $module . '-' . $zone->zone . '" ' : '';
            echo '<div ' . $id . 'class="' . $module . ' ' . $zone->zone . '">';
            echo $zoneContent;
            echo '</div>';
        }
    }
}
开发者ID:JVS-IS,项目名称:ICONITO-EcoleNumerique,代码行数:34,代码来源:helper.php

示例4: renderFooterJavaScript

 public function renderFooterJavaScript()
 {
     parent::renderFooterJavaScript();
     $unseen = $this->tutorial->getUnseen();
     if (empty($unseen)) {
         return;
     }
     $init = false;
     $retval = '';
     foreach ($unseen as $k => $v) {
         if (isset($unseen['init']) && $unseen['init']) {
             $init = true;
         }
         $retval .= getTheme()->get('partials/tutorialJs.php', array_merge(array('step' => $k + 1), $v));
     }
     return $retval;
 }
开发者ID:gg1977,项目名称:frontend,代码行数:17,代码来源:TutorialPlugin.php

示例5: __construct

 public function __construct()
 {
     $this->api = getApi();
     $this->config = getConfig()->get();
     $this->plugin = getPlugin();
     $this->route = getRoute();
     $this->session = getSession();
     $this->template = getTemplate();
     $this->theme = getTheme();
     $this->utility = new Utility();
     $this->url = new Url();
     $this->template->template = $this->template;
     $this->template->config = $this->config;
     $this->template->plugin = $this->plugin;
     $this->template->session = $this->session;
     $this->template->theme = $this->theme;
     $this->template->utility = $this->utility;
     $this->template->url = $this->url;
     $this->template->user = new User();
 }
开发者ID:gg1977,项目名称:frontend,代码行数:20,代码来源:BaseController.php

示例6: lessc

 public function lessc()
 {
     if (!isset($_GET['f'])) {
         $this->route->run('/error/404');
         return;
     }
     $f = $_GET['f'];
     header('Content-type: text/css');
     header(sprintf('Last-Modified: %s GMT', gmdate('D, d M Y H:i:s', strtotime('-1 year'))));
     header(sprintf('Etag: %s', md5(sprintf('%s~%s', $key, $f))));
     if (!is_array($f)) {
         $f = (array) explode(',', $f);
     }
     $theme = getTheme();
     $less = new lessc();
     foreach ($f as $file) {
         $fullPath = realpath(sprintf('%s/%s/stylesheets/%s', $this->config->paths->themes, $theme->getThemeName(), $file));
         if (file_exists($fullPath) && preg_match('/\\.less$/', $file) === 1 && strpos($fullPath, $this->config->paths->themes) === 0) {
             echo $this->pipeline->normalizeUrls(dirname($fullPath), $less->compileFile($fullPath));
         }
     }
 }
开发者ID:hfiguiere,项目名称:frontend,代码行数:22,代码来源:AssetsController.php

示例7: SeleccionarModuloFoto

function SeleccionarModuloFoto($carpeta, $inicio, $subcatalogo)
{
    global $xoopsDB, $xoopsConfig, $xoopsTheme, $xoopsUser;
    $consulta2 = "SELECT ID, Carpeta, Imagen, Descripcion, Aleatorio, Bloque, MCatalogos, AnchoBloque, AltoBloque, AnchoImagenes, AltoImagenes, FotosAncho, FotosAlto, Anterior, Siguiente, InicioEncabezado, FinEncabezado, InicioPie, FinPie, InicioFoto, FinFoto, InicioMarcoFoto, FinMarcoFoto, EnviarFicheros, NombreFotoCarpeta, NombreFotoCarpetaSuperior, UsarBordes, BordesTema, BordeImagenPequenoIzquierda, BordeImagenPequenoDerecha, BordeImagenPequenoArriba, BordeImagenPequenoAbajo, UsarBordesGaleria, NombreFrameStyleGaleria, ForzarDescripcion, ForzarTamano, EspaciadoVertical, EspaciadoHorizontal, Espaciado, ColorFondo, ColorFondo1, ColorFondo2, ColorFondo3, ColorFondo4 FROM " . $xoopsDB->prefix("uskolag_carpeta") . " Where Carpeta like '" . $carpeta . "'";
    $myts = new MyTextSanitizer();
    $result2 = $xoopsDB->query($consulta2);
    while ($tbCarpeta2 = $xoopsDB->fetchArray($result2)) {
        $PERMITIRENVIARFICHEROS = $tbCarpeta2['EnviarFicheros'];
        $UsarBordesPequeno = $tbCarpeta2['UsarBordes'];
        $BordesTemaPequeno = $tbCarpeta2['BordesTema'];
        $ANCHOCARPETA = $tbCarpeta2['AnchoImagenes'];
        $ALTOCARPETA = $tbCarpeta2['AltoImagenes'];
        $ForzarDescripcion = $tbCarpeta2['ForzarDescripcion'];
        $ForzarTamano = $tbCarpeta2['ForzarTamano'];
        $ColorFondo = $tbCarpeta2['ColorFondo'];
        $ColorFondo1 = $tbCarpeta2['ColorFondo1'];
        $ColorFondo2 = $tbCarpeta2['ColorFondo2'];
        $ColorFondo3 = $tbCarpeta2['ColorFondo3'];
        $ColorFondo4 = $tbCarpeta2['ColorFondo4'];
        $EspaciadoVertical = $tbCarpeta2['EspaciadoVertical'];
        $EspaciadoHorizontal = $tbCarpeta2['EspaciadoHorizontal'];
        $Espaciado = $tbCarpeta2['Espaciado'];
        $descripcionCarpeta = $tbCarpeta2['Descripcion'];
        $ValorColorFondo = "";
        if ($ColorFondo1 == 1) {
            $ValorColorFondo = " class=bg1";
        }
        if ($ColorFondo1 == 2) {
            $ValorColorFondo = " class=bg2";
        }
        if ($ColorFondo1 == 3) {
            $ValorColorFondo = " class=bg3";
        }
        if ($ColorFondo1 == 4) {
            $ValorColorFondo = " class=bg4";
        }
        if ($ColorFondo1 == 5) {
            $ValorColorFondo = " class=bg5";
        }
        if ($ColorFondo1 == 6) {
            $ValorColorFondo = " class=bg6";
        }
        if (!$ValorColorFondo) {
            $ValorColorFondo = " " . $ColorFondo1;
        }
        if ($ColorFondo2) {
            $AnchoMatte = " cellpadding=" . $ColorFondo2;
        }
        if ($ColorFondo2 == 0) {
            $AnchoMatte = " cellpadding=" . "0";
        }
        $Espaciado = $ColorFondo2 * 2;
        $CadenaCarrete = "<table" . $ValorColorFondo . $AnchoMatte . ">";
        //	$CadenaCarrete ="<table bgcolor=pink cellpadding=20>";
        if ($tbCarpeta2['UsarBordesGaleria']) {
            if ($tbCarpeta2['BordesTema']) {
                if (file_exists(XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/" . "size.php")) {
                    include XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/" . "size.php";
                    $rutaGrande = XOOPS_URL . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/";
                } else {
                    if (file_exists(XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/images/small/" . "size.php")) {
                        include XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/images/small/" . "size.php";
                        $rutaGrande = XOOPS_URL . "/themes/" . getTheme() . "/images/small/";
                    } else {
                        include XOOPS_ROOT_PATH . "/" . "/modules/uskolaxgallery/icons/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/small/" . "size.php";
                        $rutaGrande = XOOPS_URL . "/modules/uskolaxgallery/icons/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/small/";
                    }
                }
            } else {
                if (file_exists(XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/" . "size.php")) {
                    include XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/" . "size.php";
                    $rutaGrande = XOOPS_URL . "/themes/" . getTheme() . "/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/images/small/";
                } else {
                    if (file_exists(XOOPS_ROOT_PATH . "/" . "/modules/uskolaxgallery/icons/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/small/" . "size.php")) {
                        include XOOPS_ROOT_PATH . "/" . "/modules/uskolaxgallery/icons/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/small/" . "size.php";
                        $rutaGrande = XOOPS_URL . "/modules/uskolaxgallery/icons/" . $tbCarpeta2['NombreFrameStyleGaleria'] . "/small/";
                    } else {
                        include XOOPS_ROOT_PATH . "/" . "/themes/" . getTheme() . "/images/small/" . "size.php";
                        $rutaGrande = XOOPS_URL . "/themes/" . getTheme() . "/images/small/";
                    }
                }
            }
            $TBordeImagenGrandeIzquierdaArriba = "<td background=" . $rutaGrande . "top_left_corner.gif" . " width=" . $BloqueLeft . " height=" . $BloqueTop . "></td>";
            $TBordeImagenGrandeIzquierdaCentro = "<td background=" . $rutaGrande . "left.gif" . " width=" . $BloqueLeft . "></td>";
            $TBordeImagenGrandeIzquierdaAbajo = "<td background=" . $rutaGrande . "bottom_left_corner.gif" . " width=" . $BloqueLeft . " height=" . $BloqueBottom . "></td>";
            $TBordeImagenGrandeCentroArriba = "<td background=" . $rutaGrande . "top.gif" . " height=" . $BloqueTop . "></td>";
            $TBordeImagenGrandeCentroAbajo = "<td background=" . $rutaGrande . "bottom.gif" . " height=" . $BloqueBottom . "></td>";
            $TBordeImagenGrandeDerechaArriba = "<td background=" . $rutaGrande . "top_right_corner.gif" . " width=" . $BloqueRight . " height=" . $BloqueTop . "></td>";
            $TBordeImagenGrandeDerechaCentro = "<td background=" . $rutaGrande . "right.gif" . " width=" . $BloqueRight . "></td>";
            $TBordeImagenGrandeDerechaAbajo = "<td background=" . $rutaGrande . "bottom_right_corner.gif" . " width=" . $BloqueRight . " height=" . $BloqueBottom . "></td>";
            $USKOLAGALERYANEXT = "<img src=\"" . $rutaGrande . "next.gif" . "\">";
            $USKOLAGALERYAPREVIOUS = "<img src=\"" . $rutaGrande . "previous.gif" . "\">";
            $InicioEncabezado = $FInicioEncabezado;
            $FinEncabezado = $FFinEncabezado;
            $InicioFoto = $FInicioPie;
            $FinFoto = $FFinPie;
            $InicioMarcoFoto = $FInicioMarcoFoto;
            $FinMarcoFoto = $FFinMarcoFoto;
            $InicioPie = $FInicioPie;
            $FinPie = $FFinPie;
//.........这里部分代码省略.........
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:101,代码来源:seleccionarpequeno.php

示例8: strlen

 */
$url = $_GET['url'];
$url_count = strlen($url);
$slug_number = 1;
$slug = array();
for ($i = 0; $i <= $url_count; $i++) {
    $letter = substr($url, $i, 1);
    if ($letter == '/' || $letter == '') {
        $slug_number++;
    } else {
        $slug[$slug_number] .= $letter;
    }
}
/*
 *	This section decides wether the user is requesting the homepage or another page.
 *	It does this by checking wether slug 1 is defined, if not then it will load the
 *	home page.
 *
 *	If the root slug is defined then it will decide what file to load by accessing
 *	the page data and getting a file URL.
 *
 */
if (!isset($slug[1])) {
    include $_SERVER['DOCUMENT_ROOT'] . $INS_DIR . 'themes/' . getTheme() . '/home-page.php';
} else {
    if (slugActive($slug[1])) {
        include getSlugLocation($slug[1]);
    } else {
        include $_SERVER['DOCUMENT_ROOT'] . $INS_DIR . 'themes/' . getTheme() . '/404.php';
    }
}
开发者ID:austincollins,项目名称:myPersonalWebsite,代码行数:31,代码来源:index.php

示例9: function_exists

    $maxImageHeight = "600";
    $preloaderColor = "0xFFFFFF";
    $textColor = "0xFFFFFF";
    $frameColor = "0xFFFFFF";
    $frameWidth = "10";
    $stagePadding = "20";
    $thumbnailColumns = "3";
    $thumbnailRows = "5";
    $navPosition = "left";
    $enableRightClickOpen = "true";
    $backgroundImagePath = "";
    // End of Simpeviewer config
}
$map = function_exists('printGoogleMap');
if (!isset($_GET['format']) || $_GET['format'] != 'xml') {
    $themeResult = getTheme($zenCSS, $themeColor, 'kish-my father');
    if ($_noFlash) {
        $backgroundColor = "#0";
        // who cares, we won't use it
    } else {
        $backgroundColor = parseCSSDef($zenCSS);
    }
    ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<?php 
    zp_apply_filter('theme_head');
    ?>
	<title><?php 
    echo getBareGalleryTitle();
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:31,代码来源:album.php

示例10: getTheme

<?php

if (!defined('WEBPATH')) {
    die;
}
$themeResult = getTheme($zenCSS, $themeColor, 'light');
$firstPageImages = normalizeColumns('2', '6');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<?php 
zenJavascript();
?>
	<title><?php 
echo getBareGalleryTitle();
?>
 | <?php 
echo gettext("Archive View");
?>
</title>
	<link rel="stylesheet" href="<?php 
echo $zenCSS;
?>
" type="text/css" />
	<?php 
printRSSHeaderLink('Gallery', gettext('Gallery RSS'));
?>
</head>

<body>
开发者ID:ItsHaden,项目名称:epicLanBootstrap,代码行数:31,代码来源:archive.php

示例11: getPlugin

    getPlugin()->load();
} else {
    $runUpgrade = false;
    $runSetup = true;
    // setup and enable routes for setup
    $baseDir = dirname(dirname(__FILE__));
    $paths = new stdClass();
    $paths->libraries = "{$baseDir}/libraries";
    $paths->configs = "{$baseDir}/configs";
    $paths->controllers = "{$baseDir}/libraries/controllers";
    $paths->docroot = "{$baseDir}/html";
    $paths->external = "{$baseDir}/libraries/external";
    $paths->adapters = "{$baseDir}/libraries/adapters";
    $paths->models = "{$baseDir}/libraries/models";
    $paths->templates = "{$baseDir}/templates";
    $paths->themes = "{$baseDir}/html/assets/themes";
    $configObj->set('paths', $paths);
    if (!$hasConfig) {
        require $configObj->get('paths')->libraries . '/dependencies.php';
    }
    require $configObj->get('paths')->libraries . '/routes-setup.php';
    require $configObj->get('paths')->libraries . '/routes-error.php';
    require $configObj->get('paths')->controllers . '/SetupController.php';
    $configObj->loadString(file_get_contents(sprintf('%s/html/assets/themes/%s/config/settings.ini', dirname(dirname(__FILE__)), getTheme()->getThemeName())));
    // Before we run the setup in edit mode, we need to validate ownership
    $userObj = new User();
    if (isset($_GET['edit']) && !$userObj->isOwner()) {
        $routeObj->run('/error/403');
        die;
    }
}
开发者ID:nicolargo,项目名称:frontend,代码行数:31,代码来源:initialize.php

示例12: loadTemplate

function loadTemplate()
{
    $ci =& get_instance();
    $ci->load->library('system');
    $ci->parser->parse($ci->system->theme['template'], getTheme());
}
开发者ID:ricardoambdev,项目名称:estudoci_painel,代码行数:6,代码来源:functions_helper.php

示例13: getTheme

">look at your photos</a>.</div>
<div class="message upload-warning"><img src="/assets/images/warning-big.png" align="absmiddle">Uh oh! <span class="failed"></span> of <span class="total"></span> photos failed to upload.</div>
<div class="message upload-progress"><img src="/assets/images/upload-big.gif" align="absmiddle">Currently uploading <span class="completed">0</span> of <span class="total">0</span> photos.</div>
<div class="upload-share row">
  <?php 
$this->plugin->invoke('renderPhotoUploaded', null);
?>
</div>

<form class="upload form-stacked">
  <div class="row">
    <div class="span8">
      <div id="uploader">
        <div class="insufficient">
          <img src="<?php 
echo getTheme()->asset('image', 'error.png');
?>
">
          <h1>Unfortunately, it doesn't look like we support your browser. :(</h1>
          <p>
            Try using <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a>.
          </p>
        </div>
      </div>
      <em class="poweredby">Powered by <a href="http://www.plupload.com">Plupload</a>.</em>
    </div>
    <div class="span4">
      <h2>Use these settings.</h2>
      <label for="tags">Tags</label>
      <input type="text" name="tags" class="typeahead-tags tags tags-autocomplete" placeholder="Optional comma separated list">
开发者ID:nicolargo,项目名称:frontend,代码行数:30,代码来源:upload.php

示例14: MostrarCarpetas


//.........这里部分代码省略.........
        echo "</td><td align=center>";
        echo PreparaAyuda(_AM_USKOLAXGALLERY_ESPACIADO, _HELP_USKOLAXGALLERY_ESPACIADO);
        //	echo "</td><td align=center>";
        //	echo PreparaAyuda(_AM_USKOLAXGALLERY_COLORFONDO, _HELP_USKOLAXGALLERY_COLORFONDO);
        echo "</td></tr>";
        echo "<tr>";
        echo "<td align=center>";
        echo PreparaAyuda("<input type=\"text\" name=\"EspaciadoHorizontal\" value=\"" . $tbCarpeta['EspaciadoHorizontal'] . "\">", _HELP_USKOLAXGALLERY_ESPACIADOHORIZONTAL);
        echo "</td><td align=center>";
        echo PreparaAyuda("<input type=\"text\" name=\"EspaciadoVertical\" value=\"" . $tbCarpeta['EspaciadoVertical'] . "\">", _HELP_USKOLAXGALLERY_ESPACIADOVERTICAL);
        echo "</td><td align=center>";
        echo PreparaAyuda("<input type=\"text\" name=\"Espaciado\" value=\"" . $tbCarpeta['Espaciado'] . "\">", _HELP_USKOLAXGALLERY_ESPACIADO);
        //	echo "</td><td align=center>";
        //	echo PreparaAyuda("<input type=\"text\" name=\"ColorFondo\" value=\"". $tbCarpeta['ColorFondo']. "\">", _HELP_USKOLAXGALLERY_COLORFONDO);
        echo "</td></tr>";
        echo "</table>";
        echo "<br>";
        echo "</td></tr><tr>";
        echo "<td>";
        echo "<table cellspacing=3 cellpadding=3>";
        // webby Mattes
        echo "<tr><td colspan=2 align=center><b>";
        echo PreparaAyuda(_AM_USKOLAXGALLERY_THUMBNAILPICTUREMATTES, _HELP_USKOLAXGALLERY_THUMBNAILPICTUREMATTES);
        echo "</b></td></tr>\n";
        echo "<tr><td align=center>";
        echo PreparaAyuda(_AM_USKOLAXGALLERY_COLORFONDO1, _HELP_USKOLAXGALLERY_COLORFONDO1) . "<br>";
        echo PreparaAyuda("<input type=\"text\" name=\"ColorFondo1\" value=\"" . $tbCarpeta['ColorFondo1'] . "\"></td><td align=center>", _HELP_USKOLAXGALLERY_COLORFONDO1);
        echo PreparaAyuda(_AM_USKOLAXGALLERY_COLORFONDO2, _HELP_USKOLAXGALLERY_COLORFONDO2) . "<br>";
        echo PreparaAyuda("<input type=\"text\" name=\"ColorFondo2\" value=\"" . $tbCarpeta['ColorFondo2'] . "\">", _HELP_USKOLAXGALLERY_COLORFONDO2);
        echo "</td>\n";
        echo "</tr><tr>";
        echo "<td colspan=2 align=center> ";
        echo "\t<table bordercolor=black cellpadding=4>\r\n\t\t<tr>\r\n\t\t\t<td align=center><b>" . _AM_USKOLAXGALLERY_COORDINATING;
        $currenttheme = getTheme();
        echo $currenttheme;
        echo _AM_USKOLAXGALLERY_THEMECOLORHELP . "</td></tr><tr ><td bgcolor=FFFFFF>";
        echo "\r\n\t\t\t<table cellpadding=4 cellspacing=2>\r\n\t\t\t<tr>\r\n\t\t\t<td class=bg1 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>1</td>\r\n\t\t\t<td class=bg2 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>2</td>\r\n\t\t\t<td class=bg3 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>3</td>\r\n\t\t\t<td class=bg4 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>4</td>\r\n\t\t\t<td class=bg5 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>5</td>\r\n\t\t\t<td class=bg6 width=60 height=50 align=center valign=absmiddle><font face=\"monotype corsiva,verdana\"><big>6</td>\r\n\t\t\t</tr>\r\n\t\t\t</table>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t\t</table>\n";
        echo "</td>";
        // end webby
        echo "</tr><tr>";
        echo "<td>";
        echo "<table cellspacing=3 cellpadding=3> <tr>";
        echo "<tr>";
        echo "<td colspan=4>";
        if ($tbCarpeta['ForzarDescripcion']) {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"ForzarDescripcion\" value=\"1\"" . " checked" . ">" . _AM_USKOLAXGALLERY_FORZARDESCRIPCION, _HELP_USKOLAXGALLERY_FORZARDESCRIPCION);
        } else {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"ForzarDescripcion\" value=\"1\"" . ">" . _AM_USKOLAXGALLERY_FORZARDESCRIPCION, _HELP_USKOLAXGALLERY_FORZARDESCRIPCION);
        }
        echo "</td><td>";
        if ($tbCarpeta['ForzarTamano']) {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"ForzarTamano\" value=\"1\"" . " checked" . ">" . _AM_USKOLAXGALLERY_FORZARTAMANO, _HELP_USKOLAXGALLERY_FORZARTAMANO);
        } else {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"ForzarTamano\" value=\"1\"" . ">" . _AM_USKOLAXGALLERY_FORZARTAMANO, _HELP_USKOLAXGALLERY_FORZARTAMANO);
        }
        echo "</td></tr>";
        echo "</table>";
        echo "<br>";
        // Picture Frames
        echo "<table width=100% cellspacing=3 cellpadding=3> <tr>";
        echo "<td colspan=4>";
        if ($tbCarpeta['UsarBordesGaleria']) {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"UsarBordesGaleria\" value=\"1\"" . " checked" . ">" . _AM_USKOLAXGALLERY_USARBORDES, _HELP_USKOLAXGALLERY_USARBORDES);
        } else {
            echo PreparaAyuda("<input type=\"checkbox\" name=\"UsarBordesGaleria\" value=\"1\"" . ">" . _AM_USKOLAXGALLERY_USARBORDES, _HELP_USKOLAXGALLERY_USARBORDES);
        }
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:67,代码来源:mostrargaleria.php

示例15: getTheme

<?php

require 'customfunctions.php';
$themeResult = getTheme($zenCSS, $themeColor, 'effervescence');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<?php 
zenJavascript();
?>
	<title><?php 
echo getBareGalleryTitle();
?>
 | <?php 
echo gettext('Object not found');
?>
</title>
	<link rel="stylesheet" href="<?php 
echo $zenCSS;
?>
" type="text/css" />
</head>

<body>

	<!-- Wrap Header -->
	<div id="header">
		<div id="gallerytitle">

		<!-- Logo -->
开发者ID:ItsHaden,项目名称:epicLanBootstrap,代码行数:31,代码来源:404.php


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