- Home
- Inquire
- Enhance
- Understand
- Download
- Discover
php:
$this->redirect($target); // 303 See Other $this->redirect($target, 302); // 302 Found $this->redirect($target, 301); // 301 Moved Permanently
php:
<link rel="stylesheet" type="text/css" href="system/themes/<?php echo $this->theme; ?>/basic.css" media="screen" /> <link rel="stylesheet" type="text/css" href="system/themes/<?php echo $this->theme; ?>/main.css" media="screen" /> <link rel="stylesheet" type="text/css" href="plugins/calendar/calendar.css" media="screen" /> <?php if ($this->be27): ?> <link rel="stylesheet" type="text/css" href="system/themes/<?php echo $this->theme; ?>/be27.css" media="screen" /> <?php endif; ?> <?php if ($this->isMac): ?> <link type="text/css" rel="stylesheet" href="system/themes/<?php echo $this->theme; ?>/macfixes.css" media="screen" /> <?php endif; ?> <!--[if lte IE 7]><link type="text/css" rel="stylesheet" href="system/themes/<?php echo $this->theme; ?>/iefixes.css" media="screen" /><![endif]--> <!--[if IE 8]><link type="text/css" rel="stylesheet" href="system/themes/<?php echo $this->theme; ?>/ie8fixes.css" media="screen" /><![endif]--> <?php echo $this->stylesheets; ?>
css:
/* No longer possible in version 2.7 */ .mod_calendar td { … } .mod_minicalendar td { … } /* Possible ever since, recommended in version 2.7 */ table.calendar td { … } table.minicalendar td { … }
php:
<input type="hidden" name="FORM_SUBMIT" value="<?php echo $this->formId; ?>" /> <?php if (!$this->showChannels): ?> <?php foreach ($this->channels as $id=>$title): ?> <input type="hidden" name="channels[]" value="<?php echo $id; ?>" /> <?php endforeach; ?> <?php endif; ?> <input type="text" name="email" class="text" value="<?php echo $this->email; ?>" /> <?php if ($this->showChannels): ?> <div class="checkbox_container"> <?php foreach ($this->channels as $id=>$title): ?> <span><input type="checkbox" name="channels[]" id="opt_<?php echo $this->id; ?>_<?php echo $id; ?>" value="<?php echo $id; ?>" class="checkbox" /> <label for="opt_<?php echo $this->id; ?>_<?php echo $id; ?>"><?php echo $title; ?></label></span> <?php endforeach; ?> </div> <?php endif; ?> <input type="submit" name="submit" class="submit" value="<?php echo $this->submit; ?>" />
php:
<form action="<?php echo $this->action; ?>" method="post"> <div class="formbody"> <?php if ($this->message): ?> <p class="error"><?php echo $this->message; ?></p> <?php endif; ?> <input type="hidden" name="FORM_SUBMIT" value="tl_login" /> <label for="username"><?php echo $this->username; ?></label> <input type="text" name="username" id="username" class="text" maxlength="64" value="<?php echo $this->value; ?>" /><br /> <label for="password"><?php echo $this->password; ?></label> <input type="password" name="password" id="password" class="text password" maxlength="64" value="" /><br /> <div class="submit_container"> <input type="submit" class="submit" value="<?php echo $this->slabel; ?>" /> </div> </div> </form>
