This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <f:form object="{tx_caddownload_caddownload}" objectName="search" action="showDownloadSearch"> | |
| <label for="search">Suchbegriff:</label> | |
| <f:form.textfield property="criteria" type="text" class="form-control" id="cad-search-input" /> z.B.: "SW11 BA MD01" oder "Anschluss" | |
| <f:form.submit value="Suche starten >" /> | |
| </f:form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("span.mailto").each(function(){ | |
| var at = / at /; | |
| var dot = / dot /g; | |
| var addr = $(this).text().replace(at,"@").replace(dot,"."); | |
| $(this).after('<a href="mailto:'+addr+'" title="E-Mail senden">'+ addr +"</a>"); | |
| $(this).remove(); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * * * * * * | |
| | | | | | | | |
| | | | | | +-- Year (range: 1900-3000) | |
| | | | | +---- Day of the Week (range: 1-7, 1 standing for Monday) | |
| | | | +------ Month of the Year (range: 1-12) | |
| | | +-------- Day of the Month (range: 1-31) | |
| | +---------- Hour (range: 0-23) | |
| +------------ Minute (range: 0-59) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO new_table (Foo,Bar,Fizz,Buzz) | |
| SELECT Foo,Bar,Fizz,Buzz | |
| FROM old_table |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //in Repository | |
| /** | |
| * Findby Categories | |
| * | |
| * @param type $categories | |
| * @return type | |
| */ | |
| public function findByCategories($categories) { | |
| $query = $this->createQuery(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ini_set('display_errors', 1); | |
| error_reporting(E_ALL ^ E_NOTICE); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // (In localconf.php): | |
| $TYPO3_CONF_VARS['SYS']['displayErrors'] = '1'; | |
| // OR | |
| $TYPO3_CONF_VARS['SYS']['displayErrors'] = '2'; | |
| $TYPO3_CONF_VARS['SYS']['devIPmask'] = 'Ihre IP Adresse'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //DataTables Table plug-in for jQuery: http://www.datatables.net/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FLOOR( 1 + RAND( ) *10 ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS in order to center an element (with position absolute) in a container: */ | |
| .centeredIcon { | |
| background: url("http://www.google.com/favicon.ico") no-repeat transparent; | |
| width:64px; | |
| height:64px; | |
| position:absolute; | |
| left:50%; | |
| top:50%; | |
| margin-left:-32px; /* half of the width */ |