Skip to content

Instantly share code, notes, and snippets.

@kogakure
Created January 29, 2009 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kogakure/54469 to your computer and use it in GitHub Desktop.
Save kogakure/54469 to your computer and use it in GitHub Desktop.
PHP: Typolight Form-Widget-Änderungen
<?php if ($this->hasError): ?>
<h3 class="error"><?php echo $this->getErrorAsString(); ?></h3>
<?php endif; ?>
<p>
<?php echo $this->generateLabel(); ?>
<?php echo $this->generate(); ?>
</p>
<label for="ctrl_<?php echo $this->id; ?>"><?php echo $this->label; ?> <?php echo $this->generateQuestion(); ?></label>
<?php echo $this->generateWithError(); ?>
/* "false" ist Standard, liefert Reihenfolge [error][field] */
<?php echo $this->generateWithError(); ?>
/* Liefert Reihenfolge [field][error] */
<?php echo $this->generateWithError(true); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment