Example #1
0
if ($show_top_panel) {
    echo '<li class="openbtn"><a href="#"></a></li>';
}
if (cws_is_wpml_active()) {
    echo "<li class='lang_bar'>";
    do_action('icl_language_selector');
    echo "</li>";
}
show_social();
show_search_bar();
?>
					</ul><!-- .kids_social -->
					<div class="kids_clear"></div>

					<?php 
show_logo();
?>

					<nav id="kids_main_nav" <?php 
if ($menu_merged) {
    echo 'class="merged" ';
}
position_menu();
?>
 >
						<div class="menu-button">
							<span class="menu-button-line"></span>
							<span class="menu-button-line"></span>
							<span class="menu-button-line"></span>
						</div>
<?php 
Example #2
0
        echo '<tr><td>' . __('Copyright', 'pressbooks') . ':</td><td>';
        echo !empty($metadata['pb_copyright_year']) ? $metadata['pb_copyright_year'] : date('Y');
        if (!empty($metadata['pb_copyright_holder'])) {
            echo ' ' . __('by ', 'pressbooks') . ' ' . $metadata['pb_copyright_holder'] . '. ';
        }
        echo "</td></tr>\n";
        ?>

				</table>
				<?php 
    }
    ?>

        <!-- logo options -->
        <?php 
    if (show_logo()) {
        ?>
          <?php 
        if (show_waymaker_logo()) {
            ?>
            <img class="lumen-footer-logo" src="<?php 
            echo get_stylesheet_directory_uri();
            ?>
/images/FooterLumenWaymaker.png" alt="Footer Logo Lumen Waymaker" />
            <?php 
        } else {
            ?>
            <img class="lumen-footer-logo" src="<?php 
            echo get_stylesheet_directory_uri();
            ?>
/images/FooterLumenCandela.png" alt="Footer Logo Lumen Candela" />
Example #3
0
    function mostra($data = 0, $page = 6)
    {
        global $institution_name, $institution_site;
        $data = round($data);
        $sql = "select * from cep_protocolos\n\t\t\t\t\tleft join usuario on cep_pesquisador = us_codigo\n\t\t\t\t\twhere cep_reuniao = {$data}\n\t\t\t\t\torder by cep_caae , cep_data\n\t\t\t\t";
        $rlt = db_query($sql);
        $link = '<A href="javascript:newxy2(\'meeting_schediled_popup.php?dd1=' . $data . '&dd2=' . $page . '\',800,600);">';
        $sh = '<table bgcolor="white" class="tabela00" 
						cellpadding=0 cellspacing=0 width="100%" 
						border=0>';
        $sh .= '<TR valign="top">
						<TD colspan=1 rowspan=2 width="10%">';
        $sh .= '<img src="img/logo_dictamen.jpg">';
        $sh .= '<TD colspan=2><center><B>' . $institution_name . '</B>';
        $sh .= '<BR>' . $institution_site;
        $sh .= '</center>';
        $sh .= '<div id="icone_pr">' . $link . '<img src="img/icone_print.png" width="48" border=0></A></div>';
        $sh .= '<TR><TD>';
        $sh .= '<div class="lt0" style="text-align: right">page</div>';
        $sh .= '</table>';
        /* Dados da pauta */
        $sh .= '<table class="table_proj tabela00" width="100%" border=0>';
        $sh .= '<TR><TD colspan=4><h2><center>' . msg("scheduled_meeting") . ' - ' . stodbr($data) . '</center></h2>';
        $sh .= '<TR>
						<TH width="10%">' . msg('protocol');
        $sh .= '<TH width="80%" colspan=2>' . msg('project_title');
        $sh .= '<TH width="10%">' . msg('results');
        $sx = '';
        $tot = 99;
        $totr = 0;
        $pag = 1;
        while ($line = db_read($rlt)) {
            if ($tot + 1 > $page) {
                $tot = 0;
                if ($pag > 1) {
                    $sx .= '</table>';
                    $sx .= '<p style="page-break-before: always;"></p>';
                }
                $sx .= troca($sh, 'page', 'p. ' . $pag);
                $pag++;
            }
            $tot++;
            $totr++;
            $sx .= '<TR valign="top" class="tabela01">';
            /* NR caae */
            $sx .= '<TD rowspan=2>
								<font class="lt1"><B>' . $line['cep_caae'] . '</B>' . '</font>';
            $sx .= '<BR>' . msg('version') . ' ' . $line['cep_versao'];
            $sx .= '<BR><center><font class="lt0">' . stodbr($line['cep_data']) . '</font></center>';
            /* Project title */
            $sx .= '<TD colspan=2><B>' . $line['cep_titulo'] . '</B>';
            /* Decision */
            $sx .= '<TD rowspan=2 width="60"><center>' . msg('decision');
            $sx .= '<table border=1 width=80%>
									<TR><TD height="30">&nbsp;</table>';
            $sx .= '<TR>';
            $sx .= '<TD colspan=2>' . msg('investigador') . ': <B>' . $line['us_nome'];
            $sx .= '</B> - ' . $line['us_instituition'];
            $sx .= '<BR>&nbsp;';
        }
        $sx .= '<TR><TD colspan=3>' . msg('found') . ' ' . $totr . ' ' . msg('register');
        $sx .= '</table>';
        $sx .= show_logo();
        return $sx;
    }