Vereinstermine
Monat wechseln
$StartMonthNameFull, 2021
Es wurden keine Anlässe gefunden..
Line 771 in /is/htdocs/wp1034702_3MKK67DW0O/www/silverstripe/framework/email/Email.php
762 'span.codedirection { unicode-bidi: bidi-override; direction: rtl; }', 763 'codedirectionCSS' 764 ); 765 return '<span class="codedirection">' . strrev($email) . '</span>'; 766 case 'visible' : 767 $obfuscated = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); 768 return strtr($email, $obfuscated); 769 case 'hex' : 770 $encoded = ''; 771 for ($x=0; $x < strlen($email); $x++) $encoded .= '&#x' . bin2hex($email{$x}).';'; 772 return $encoded; 773 default: 774 user_error('Email::obfuscate(): Unknown obfuscation method', E_USER_NOTICE); 775 return $email; 776 } 777 }
Line 1813 in /is/htdocs/wp1034702_3MKK67DW0O/www/silverstripe/framework/forms/Form.php
1804 self::$current_action = $action; 1805 } 1806 1807 /** 1808 * Compiles all CSS-classes. 1809 * 1810 * @return string 1811 */ 1812 public function extraClass() { 1813 return implode(array_unique($this->extraClasses), ' '); 1814 } 1815 1816 /** 1817 * Add a CSS-class to the form-container. If needed, multiple classes can 1818 * be added by delimiting a string with spaces. 1819 *
Es wurden keine Anlässe gefunden..