Ejemplo n.º 1
0
 public function __construct(array $files)
 {
     parent::__construct([]);
     foreach ($files as $i => $file) {
         $this->content(\Html::style($file . '.css'));
     }
 }
Ejemplo n.º 2
0
 public function action_index()
 {
     $this->template->header->css = Html::style("themes/default/media/css/home.css");
     $this->template->header->title = __('Welcome');
     $this->template->content = View::factory('pages/welcome/main');
     $this->template->content->set(array('public_registration_enabled' => (bool) Model_Setting::get_setting('public_registration_enabled'), 'anonymous' => $this->anonymous));
 }
Ejemplo n.º 3
0
 /**
  * Load and output a css link tag from array
  *
  * @param array $array
  * @param array $params
  * @return string
  * @throws \Exception
  */
 public static function css(array $array, $params = array('attributes' => [], 'secure' => null))
 {
     Arr::mergeWithDefaultParams($params);
     $out = "\n";
     foreach ($array as $key => $item) {
         if (is_array($item)) {
             $out .= Html::style($item[0], $item[1], $item[2]) . "\n";
         } else {
             $out .= Html::style($item, $params['attributes'], $params['secure']) . "\n";
         }
     }
     return $out;
 }
Ejemplo n.º 4
0
    function RDirList($start_folder = '', $dirlistDirActionJs = '', $dirlistFileActionJs = '', $show_only_folders = false, $hilited_file = null)
    {
        $this->list_id = $start_folder;
        $this->dirlistDirActionJs = $dirlistDirActionJs;
        $this->dirlistFileActionJs = $dirlistFileActionJs;
        $this->show_only_folders = $show_only_folders;
        $this->hilited_file = $hilited_file;
        $this->start_folder = $start_folder != '' ? INSTALL_PATH . '/Download/' . $start_folder : INSTALL_PATH . '/Download';
        $this->icons = array();
        $this->icons['folder'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/folder.png');
        $this->icons['file'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/file.png');
        $this->icons['pdf'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/pdf.png');
        $this->icons['excel'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/excel.png');
        $this->icons['word'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/word.png');
        $this->icons['jpg'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/jpg.png');
        $this->icons['gif'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/png.png');
        $this->icons['png'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/png.png');
        $this->icons['sound'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/sound.png');
        $this->icons['zip'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/zip.png');
        $this->icons['download'] = Html::img('/' . INSTALL_PATH . '/Module/DirList/Icons/download.png');
        $GLOBALS['other_css'] .= Html::style('
		.filelist ul{
			list-style-type:none;
			list-style-position:inside;
			margin-left:16px;
			padding:0;
		}
		.filelist ul ul {
			padding-left:8px;
			margin-left:8px;
			border-left:1px black dotted;
		} 
		.filelist a{
			text-decoration:none;
			white-space:nowrap;
		} 
		
		');
        /*$GLOBALS['scripts'] .= Html::script('
        		function dirlistDirAction(el)
        		{
        			var url = el.getAttribute("href",2);
        
        			return false;
        		}
        		');*/
        if ($dirlistDirActionJs || $dirlistFileActionJs) {
            $GLOBALS['scripts'] .= Html::script($dirlistDirActionJs . "\n" . $dirlistFileActionJs);
        }
    }
 function head()
 {
     $template = new Template(INSTALL_PATH . '/Templates/HTML_Frame.template.html', $this->pObj);
     $anc = $this->pObj->page_props['Ancestors'];
     while ($anc) {
         if ($anc[0]['CSS']) {
             $vars['other_css'] .= '<link rel="stylesheet" href="' . $anc[0]['CSS'] . '" media="screen" type="text/css" />' . "\n";
         }
         array_shift($anc);
     }
     if ($this->pObj->page_props['CSS']) {
         $vars['other_css'] .= '<link rel="stylesheet" href="' . $this->pObj->page_props['CSS'] . '" media="screen" type="text/css" />' . "\n";
     }
     if ($this->pObj->page_props['inline_CSS']) {
         $vars['other_css'] .= Html::style($this->pObj->page_props['inline_CSS']);
     }
     return $this->template->parse_template('HTML_FRAME', $this->pObj['page_props']);
 }
Ejemplo n.º 6
0
    function class_init($db_connection = '', $path_information = '')
    {
        if ($this->check_right('KalenderIntern') && !stristr(SELF, 'admin') && stristr(SELF, 'Kalender')) {
            header("Location: http://" . $_SERVER['SERVER_NAME'] . "/Admin/KalenderAdmin");
        } else {
            $GLOBALS['TemplateVars']['NaviLogin'] = true;
        }
        $this->connection = $db_connection != '' ? $db_connection : new RheinaufDB();
        //$this->connection->debug =true;
        if (!class_exists('FormScaffold')) {
            include_once 'FormScaffold.php';
        }
        if (!class_exists('KalFormScaff')) {
            include_once 'Kalender/KalFormScaff.php';
        }
        $this->scaff = new KalFormScaff($this->db_table, $this->connection, $this->path_information);
        $this->scaff->monate = $this->monate;
        $this->scaff->cols_array['STATUS']['options'] = array('CONFIRMED' => 'fest', 'TENTATIVE' => 'vorläufig', 'CANCELLED' => 'storniert');
        $this->scaff->cols_array['CLASS']['options'] = array('PUBLIC' => 'öffentlich', 'PRIVATE' => 'nicht öffentlich');
        $this->scaff->cols_array['DESCRIPTION']['html'] = true;
        $this->scaff->cols_array['DTSTART']['type'] = 'timestamp';
        $this->scaff->cols_array['DTEND']['type'] = 'timestamp';
        $this->categories = $this->connection->db_assoc("SELECT * FROM `RheinaufCMS>Kalender>Kategorien`");
        $GLOBALS['other_css'] = Html::style('

		table {border-collapse:collapse;}
		#termine {width:100%;margin-bottom:10px;border-bottom:1px solid #33466B}
		#monatskalender .calendarHeader {text-align:right;color:#33466B}
		#monatskalender .termin a {font-weight:900;cursor:pointer}
		#monatskalender .calendarToday {background-color:#33466B;color:white}
		#monatskalender .termin{background-color:rgb(206, 211, 214)}
		#monatskalender .calendar td {width:2em;height:2em;vertical-align:middle;text-align:center;padding:0;cursor:default}
		#cat_select td {padding:0;line-height:auto}
		caption,thead,#termine .month-head {background-color:#33466B;color:white;font-weight:normal}
		#box-mitte {float:left;padding:0 2px 10px 2px;min-height:800px;width:500px}

		label {font-size:0.8em;color:#33466B;line-height:0.85em;}
		.alt_row_0 {background-color:white}
		');
        $this->event_listen();
    }
Ejemplo n.º 7
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="content-type" content="application/xhtml+xml;charset=utf-8" />
    <meta name="description" content="T-shirts for hackers." />        
    <meta name="keywords" content="hacker t-shirts, hacker tees, geek t-shirts, programming t-shirts, computer t-shirts" />
    <title><?php 
echo $title;
?>
</title>
    <?php 
echo Html::style('public/css/screen.css');
?>
</head>
<body>
    <div id="wrapper">
        <div id="header">
            <h1><a href="<?php 
echo URL::site();
?>
">Hacker Tees</a></h1>
            <ul id="nav">
                <li><a href="<?php 
echo URL::site();
?>
">Tees</a></li>
                <li><a href="<?php 
echo URL::site('about');
?>
">About</a></li>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Halaman Guru</title>
	<?php 
echo e(Html::style('assets/css/spacelab.css'));
?>

	<?php 
echo e(Html::style('assets/css/jquery.dataTables.css'));
?>

	<?php 
echo e(HTML::style('assets/datetimepicker/jquery.datetimepicker.css'));
?>


	<?php 
echo $__env->yieldContent('head');
?>
</head>
<body>
	<?php 
echo $__env->make('guru.navbar', array_except(get_defined_vars(), array('__data', '__path')))->render();
?>

	<div class="container">
		<?php 
echo $__env->yieldContent('content');
?>
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Asoyaracuy | Admin</title>
        <meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<title>AdminLTE 2 | Log in</title>
		<!-- Tell the browser to be responsive to screen width -->
		<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
		<?php 
echo Html::style('css/bootstrap.min.css');
?>

		<?php 
echo Html::script('js/jquery.min.js');
?>

		<?php 
echo Html::script('js/bootstrap.min.js');
?>

		<!-- Font Awesome -->
		<link rel="stylesheet"
			href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
		<!-- Ionicons -->
		<link rel="stylesheet"
			href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
		<!-- Theme style -->
		<link rel="stylesheet" href="backend/dist/css/AdminLTE.min.css">
		<!-- iCheck -->
		<link rel="stylesheet" href="backend/plugins/iCheck/square/blue.css">
Ejemplo n.º 10
0
    function editor()
    {
        $rubrik = $this->I18n_get_real($this->navi[$_GET['edit']]['Rubrik']);
        $rubrik = $this->path_encode($rubrik);
        $seite = $this->I18n_get_real($this->navi[$_GET['edit']]['Subnavi'][$_GET['edit_page']]['Seite']);
        $seite = $this->path_encode($seite);
        $folder = INSTALL_PATH . "/Content/{$rubrik}/{$seite}";
        $wokingversion = isset($_GET['workingversion']) ? true : false;
        if ($wokingversion && RheinaufFile::is_file($folder . "/Arbeitsversion/content.html")) {
            $contents = RheinaufFile::get_file($folder . "/Arbeitsversion/content.html");
        } else {
            $contents = RheinaufFile::get_file($folder . "/content.html");
        }
        $_SESSION['rubrik'] = $this->path_encode($rubrik);
        $_SESSION['seite'] = $this->path_encode($seite);
        $_SESSION['docroot'] = DOCUMENT_ROOT;
        $editor_page = new Html();
        //$editor_page->body_attributes=array('onunload'=>'catchClose(xinha_editors.editor)');
        $title = 'Editor für ' . PROJECT_NAME . ' -> ' . $rubrik . ' -> ' . $seite;
        $title .= $wokingversion ? ' (Arbeitsversion)' : ' (Liveversion)';
        $editor_page->title = $title;
        $editor_page->script(' _editor_url  = "/' . INSTALL_PATH . '/Libraries/Xinha/";_editor_lang = "de";_document_root = "' . DOCUMENT_ROOT . '"');
        $editor_page->script('', array('src' => '/' . INSTALL_PATH . '/Libraries/Xinha/XinhaLoader.js'));
        $editor_page->script('', array('src' => '/' . INSTALL_PATH . '/Libraries/XinhaConfig/editor.php'));
        $editor_page->script("var project_name = '" . addslashes(PROJECT_NAME) . "';");
        $styles = 'BODY 	{
						margin: 0;
						background-color:Menu;
						font-size:12px;
						padding:0;
						font-family: sans-serif;
					}

					#editor {
						width:100%;
						height:500px;
					}

					/*---DropDowns*/

					ul { /* all lists */
						padding: 0;
						margin: 0;
						list-style: none;
						position:absolute;
						top:2px;
						left:0px;
						z-index:999;
						cursor:default;


					}
					ul a {
						cursor:default;
						color:black;
						text-decoration:none;
						display:block;
					}

					li { /* all list items */
						float: left;
						position: relative;
						width: 10em;
						border:1px solid;
						border-color:Menu;
						padding-left:2px;
					}

					li:hover,li.over {
						border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
					}
					li ul { /* second-level lists */
						display: none;
						position: absolute;
						top: 15px;
						left: 0;
						-moz-opacity:1;
						filter:alpha(opacity = 100);
						padding-bottom:5px;
					}

					li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
						top: auto;
						left: auto;
					}

					li:hover ul, li.over ul { /* lists nested under hovered list items */
						display: block;
						background-color: Menu;
						border:1px solid;
						border-color:Menu ButtonShadow ButtonShadow ButtonHighlight;
					}
					li:hover ul a:hover, li.over ul a:hover {
						color:white;
						background-color:darkblue;

					}

					#content {
						clear: left;
						padding:20px 0 0 0 ;
					}

					';
        $editor_page->style($styles);
        $editor_page->div($this->menu());
        $form = new Form();
        if ($wokingversion) {
            $get_working_version = 'workingversion&';
        } else {
            $get_working_version = '';
        }
        $form->form_tag(SELF_URL . '?' . $get_working_version . 'edit=' . $_GET['edit'] . '&edit_page=' . $_GET['edit_page'], 'post', 'application/x-www-urlencoded', array('id' => 'editor_form'));
        $form->add_input('hidden', 'rubrik', $rubrik);
        $form->add_input('hidden', 'seite', $seite);
        $form->add_input('hidden', 'tmp_file', RheinaufFile::is_file($this->work_folder() . 'tmp.html') ? 'true' : 'false', array('id' => 'tmp_file'));
        $form->add_textarea('editor_text', $contents, array('id' => 'editor'));
        $form->close_form();
        $editor_page->div($form->flush_form(), array('id' => 'content'));
        return $editor_page->flush_page();
    }
Ejemplo n.º 11
0
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title><?php 
echo $title;
?>
</title>
<?php 
foreach ($styles as $style) {
    echo "\t" . Html::style($style) . "\n";
}
foreach ($scripts as $script) {
    echo "\t" . Html::script($script) . "\n";
}
?>
</head>
<body>
	<div class="wrapper">
		<div class="header"><?php 
echo $header;
?>
</div>
		<div class="middle">
			<div class="container">
				<div class="content"><?php 
echo $content;
?>
</div>
			</div>
			<div class="right-sidebar"><?php 
Ejemplo n.º 12
0
        <title><?php 
if (isset($title)) {
    echo $title;
}
?>
</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
        <meta name="description" content="Demo app" />

        <?php 
foreach ($script as $key => $value) {
    echo Html::script($value);
    echo "\r\n";
}
foreach ($style as $key => $value) {
    echo Html::style($value);
    echo "\r\n";
}
?>

        <!--[if lt IE 9]>
        <script src="/assets/js/html5.js"></script>
        <script src="/assets/js/respond.min.js"></script>
        <![endif]-->

        <script type="text/javascript">

            jQuery(document).ready(function() {
                jQuery.fn.cookiesFN();
            });
Ejemplo n.º 13
0
<html lang="en">
<head>
<meta charset="utf-8">
<title><?php 
echo $title;
?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le styles -->
@section('header')
    	@include('admin.block.header')
    	<?php 
echo Html::style('/assets/css/mail.css');
?>
    	<?php 
echo Html::style('/bootstrap-table/src/bootstrap-table.css');
?>
@show
</head>

<body>
<!-- Preloader -->
<div id="preloader">
  <div id="status">&nbsp;</div>
</div>

<!-- TOP NAVBAR --> 
@section('top_side')
    @include('admin.block.top_side')
@show 
<!-- /END OF TOP NAVBAR --> 
Ejemplo n.º 14
0
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>管理系统</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
@include('admin.block.base_header')
<?php 
echo Html::style('/assets/css/signin.css');
?>
<link rel="stylesheet" href="http://static.womenshuo.com/@/womenshuo/lib/notice/toastr/toastr.css"/>
<script>
    $(function(){
        //验证表单
//        $('form').Validform({
//            label:".label",
//            showAllError:true,
//            tiptype:3
//
//        });
        //验证表单

        //提交表单
        $('form').ajaxForm({
            url : '<?php 
echo url("admin/login/login");
?>
',
            type : 'post',
<?php

$__env->startSection('head');
?>
	<?php 
echo e(Html::style('assets/fancybox/jquery.fancybox.css'));
?>

	<style>
		img.kecil{
			width: 200px;
		}
	</style>
<?php 
$__env->stopSection();
?>

<?php 
$__env->startSection('content');
?>
	<legend>Data Soal # <?php 
echo e($soal->kd_mapel);
?>
</legend>

	<table class="table table-bordered">
		<tr>
			<td style="width:40%">Mata Pelajaran</td>
			<td> :  <?php 
echo e($soal->kd_mapel);
?>
Ejemplo n.º 16
0
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="csrf-token" content="{{ csrf_token() }}">
    <title>User Profile</title>

    <!-- Referencing Bootstrap CSS that is hosted locally -->
    <?php 
echo Html::style('css/font-awesome.min.css');
?>
    <?php 
echo Html::style('css/bootstrap.min.css');
?>
    <?php 
echo Html::style('css/theme.min.css');
?>
</head>

<body>

<div class="container">
    @yield('content')
</div>

<?php 
echo Html::script('js/jquery-1.10.2.min.js');
echo Html::script('js/jquery.populate.js');
echo Html::script('js/jquery.form.js');
?>
Ejemplo n.º 17
0
<title><?php 
echo $title;
?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le styles -->
@section('header')
    	@include('admin.block.header')
    	<?php 
echo Html::style('/assets/js/wizard/css/jquery.steps.css');
?>
    	<?php 
echo Html::style('/assets/js/wizard/jquery.stepy.css');
?>
        <?php 
echo Html::style('/assets/js/tabs/acc-wizard.min.css');
?>
        <link href="/assets/js/iCheck/flat/all.css" rel="stylesheet">
        <link href="/assets/js/iCheck/line/all.css" rel="stylesheet">
        <link href="/assets/js/colorPicker/bootstrap-colorpicker.css" rel="stylesheet">
        <link href="/assets/js/switch/bootstrap-switch.css" rel="stylesheet">
        <link href="/assets/js/idealform/css/jquery.idealforms.css" rel="stylesheet">
@show
</head>

<body>
<!-- Preloader -->
<div id="preloader">
  <div id="status">&nbsp;</div>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Login</title>
	<?php 
echo e(Html::style('assets/css/bootstrap.min.css'));
?>

	<style>
		body,html{
			margin-top: 10px;
		}
	</style>
</head>
<body>
	<div class="container">
		<div class="col-lg-8"></div>

		<div class="col-lg-4">
			<?php 
echo $__env->yieldContent('content');
?>
		</div>
	</div>
</body>
</html>
?>
" type="text/css" rel="stylesheet" />
  <link href="<?php 
echo URL::asset('css/material_css/ripples.css');
?>
" rel="stylesheet" type="text/css" />
  <link href="<?php 
echo URL::asset('css/bootstrap_css/bootstrap.min.css');
?>
" rel="stylesheet" type="text/css">
  <link href="<?php 
echo URL::asset('css/bootstrap_css/bootstrap-theme.min.css');
?>
" rel="stylesheet" type="text/css">
  <?php 
echo Html::style('css/dashboard_home.css');
?>
</head>

<body>
<!--navbar-->
<div class="bs-component">
  <div class="navbar navbar-default">
    <div class="container-fluid">
      <div class="navbar-header">
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
          <span class="icon-bar"></span>
          <span class="icon-bar"></span>
          <span class="icon-bar"></span>
        </button>
        <a class="navbar-brand" href="javascript:void(0)"><img src="img/logo.gif" width="50" /></a>
		<?php 
echo Html::style('bootstrap/css/bootstrap.min.css');
?>

		<!-- Optional theme -->
		<?php 
echo Html::style('bootstrap/css/bootstrap-theme.min.css');
?>

		<!--[if lt IE 9]>
			<?php 
echo e(Html::style('https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.js'));
?>

			<?php 
echo e(Html::style('https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js'));
?>

		<![endif]-->
		
		<!-- Latest compiled and minified CSS -->
		<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
		<!-- Optional theme -->
		<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
		
		<style> textarea { resize: none; } </style>
	</head>
	<body>
		</br>
		<div class="container">
			<label>Mairie de la ville d'Orsay </label> 
Ejemplo n.º 21
0
        <?php 
echo Html::style("media/css/site/coloursandimages.css");
?>
        <?php 
echo Html::style("media/css/plugins/jquery.ui.css");
?>
        <?php 
echo Html::style("media/css/plugins/jquery.treeview.css");
?>
        <?php 
echo Html::style("media/css/plugins/shadowbox.css");
?>

        <?php 
if (isset($_COOKIE["theme"]) && $_COOKIE["theme"] != null) {
    echo Html::style(substr($_COOKIE["theme"], strpos($_COOKIE["theme"], url::base()) + strlen(url::base())));
}
?>

        <script type="text/javascript" language="javascript">
            //Init the Shadowbox plugin
            Shadowbox.init({skipSetup:true});
            $(document).ready(function(){
                $("div#nav-container").corner("5px");
                $("div#menu li a").corner("top 5px");
                $("div#body").corner("top 5px");
                $("div#footer").corner("bottom 5px");
                $("div.pagination").corner("5px");
            });
        </script>
    </head>
echo Html::style('backend/css/plugins/iCheck/flat/blue.css');
?>

		<!-- Date Picker -->
		<?php 
echo Html::style('backend/css/plugins/datepicker/datepicker3.css');
?>

		<!-- Daterange picker -->
		<?php 
echo Html::style('backend/css/plugins/daterangepicker/daterangepicker-bs3.css');
?>

		<!-- bootstrap wysihtml5 - text editor -->
		<?php 
echo Html::style('backend/css/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css');
?>

		<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
		<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
		<!--[if lt IE 9]>
		  	<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
			<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
		<![endif]-->
		
    </head>
    <body class="hold-transition skin-blue sidebar-mini">
    	<div class="wrapper">
	    	<header class="main-header">
			    <!-- Logo -->
			    <a href="<?php 
Ejemplo n.º 23
0
if (Auth::check()) {
    $accueil = '/accueil';
    $logout = '/Users/logout';
    $compte = '/mon_compte';
    $add = '/add';
    $messagerec = 'message_recu';
    $messageenv = 'message_envoye';
    $infosUser = array('username' => Auth::user()->username, 'firstname' => Auth::user()->firstname, 'id' => Auth::user()->id, 'lastname' => Auth::user()->lastname, 'email' => Auth::user()->email, 'birthdate' => Auth::user()->birthdate);
    ?>
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<?php 
    echo Html::style('../resources/assets/css/style.css');
    ?>
		<title>Message recu</title>
	</head>
	<body>
		<div id="top">
			<ul>
				<li><?php 
    echo Html::link($accueil, 'Accueil');
    ?>
</li>
				<li><?php 
    echo Html::link($compte, 'Mon compte');
    ?>
</li>
				<li><?php 
Ejemplo n.º 24
0
        <!--[if IE]>
            <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->

        <!--[if lt IE 8]>
            <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
            <?php 
echo Html::style("themes/swift/ie7.css");
?>
        <![endif]-->

        <!--[if lt IE 9]>
            <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
            <?php 
echo Html::style("themes/swift/ie8.css");
?>
        <![endif]-->

        <script type="text/javascript" language="javascript">
            //Init the Shadowbox plugin
            Shadowbox.init({skipSetup:true});
            $(document).ready(function(){
                $("div#nav-container").corner("5px");
                $("div#menu li a").corner("top 5px");
                $("div#body").corner("top 5px");
                $("div#footer").corner("bottom 5px");
                $("div.pagination").corner("5px");
            });
        </script>
    </head>
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Asoyaracuy</title>
        <?php 
echo Html::style('frontend/css/bootstrap.min.css');
?>

        <?php 
echo Html::style('frontend/css/style.css');
?>

        
        
		<?php 
echo Html::script('frontend/js/script.js');
?>

		<?php 
echo Html::script('frontend/js/jquery.min.js');
?>

		<?php 
echo Html::script('frontend/js/bootstrap.min.js');
?>

    </head>

    <body>
        <?php 
echo $__env->yieldContent('content');
Ejemplo n.º 26
0
<?php

defined('SYSPATH') or die('No direct script access.');
?>
<!DOCTYPE html>
<html lang="pl">
<head>
	<title>Panel sterowania</title>
	<meta charset="utf-8">
	<meta name="description" content="Panel sterowania" />
	<meta name="robots" content="noindex,nofollow" />
	<?php 
echo Html::style('media/css/typography.css');
?>
	<?php 
echo Html::style('media/css/admin.css');
?>
</head>
<body>
	<div id="container">
		<?php 
echo Form::open(NULL, array('id' => 'login-form'));
?>
		
		<p>
			<?php 
echo Form::label('field-username', 'Login');
?>
			<?php 
echo Form::input('username', 'admin', array('id' => 'field-username'));
?>
	<meta charset="UTF-8">
	<title>Halaman Guru</title>
	<?php 
echo e(Html::style('assets/css/bootstrap.min.css'));
?>

	<?php 
echo e(Html::style('assets/css/jquery.dataTables.css'));
?>

	<?php 
echo e(HTML::style('assets/datetimepicker/jquery.datetimepicker.css'));
?>

	<?php 
echo e(Html::style('assets/css/smagawi.css'));
?>


	<?php 
echo $__env->yieldContent('head');
?>
</head>
<body>
	<header>
		<div class="container">
			<?php 
echo $__env->make('guru.navbar', array_except(get_defined_vars(), array('__data', '__path')))->render();
?>
		</div>
	</header>
Ejemplo n.º 28
0
<html>
	<head>
		<title><?php 
if (!empty($title)) {
    echo $title;
    ?>
 | <?php 
}
?>
Devilities</title>
		<?php 
echo Html::style('devils/media/index/reset.css', NULL, TRUE);
?>
		<?php 
echo Html::style('devils/media/index/forms.css', NULL, TRUE);
?>
		<style>
			body {font-family: Arial; Verdanna}
			
			#wrapper {width: 990px; padding: 10px; margin: 0 auto;}
				#header {position: relative; margin-bottom: 15px;}
					#header .tagline {font-style:italic;}
					#header #devils {position: absolute; right: 10px; bottom:10px;}
					#header #devils li {float: left; margin: 5px 10px;}
					
				#main {width: 75%; float: left;}
				#sidebar {width: 23%; float: right;}
				
			h1 {font-family: Georgia; margin: 0; font-size: 160%;}
			
			
Ejemplo n.º 29
0
/css/datepicker.css" rel="stylesheet" type="text/css" />
<link href="<?php 
echo $site;
?>
/css/jscrollpane.css" rel="stylesheet" type="text/css" />

<script src="<?php 
echo $site;
?>
/js/jquery.jscrollpane.min.js"></script>
<script src="<?php 
echo $site;
?>
/js/jquery.mousewheel.js"></script>
<?php 
echo Html::style("css/font-awesome.css");
echo Html::script("{$site}/media/js/tim/tiny_mce.js");
?>
<script>
$(document).ready(function(){
	$("#loading").ajaxStart(function(){
	 $(this).show();
   });
   
   $("#loading").ajaxStop(function(){
      	$(this).hide();
      });
   $('.header_top').ajaxError(function(event,xhr,setting) {
	   if(xhr.responseText=="kolewole")
	   		alert("Logged out");
	   else alert('error processing....'+xhr.responseText );
Ejemplo n.º 30
0
	<meta name="description" content="SwiftRiver" /> 
	<meta name="keywords" content="SwiftRiver">
	<?php 
Swiftriver_Event::run('swiftriver.template.meta');
?>
	<link rel="index" title="SwiftRiver" href="<?php 
echo URL::base(TRUE, TRUE);
?>
" /> 
	<link rel="icon" href="<?php 
echo url::base();
?>
themes/default/media/img/favicon.png" type="image/png">
	<?php 
echo $meta;
echo Html::style("themes/default/media/css/styles.css");
// Inline css
echo $css;
?>

	<meta name="viewport" content="width=device-width; initial-scale=1.0">
	
	<script type="text/javascript">
		// Globals
		<?php 
if (!empty($user)) {
    ?>
			<?php 
    if ($user->account->id) {
        ?>
				window.logged_in_account = <?php