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
| <?php | |
| namespace sunzinet\Typo3szBase\Provider; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2014 Armin Rüdiger Vieweg <armin@v.ieweg.de> | |
| * | |
| * All rights reserved | |
| * |
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
| page = PAGE | |
| page { | |
| typeNum = 0 | |
| 10 =< lib.templates.base | |
| } |
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
| <?php | |
| // Classes/Command/WhateverCommandController.php | |
| /** | |
| * Whatever controller | |
| * | |
| * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later | |
| * | |
| */ |
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
| <?php | |
| /** | |
| * Converts given array to TypoScript | |
| * | |
| * @param array $typoScriptArray The array to convert to string | |
| * @param string $addKey Prefix given values with given key (eg. lib.whatever = {...}) | |
| * @param integer $tab Internal | |
| * @param boolean $init Internal | |
| * @return string TypoScript |
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
| 'use strict'; | |
| app.filter('crop', function(){ | |
| return function(input, limit, respectWordBoundaries, suffix){ | |
| if (input === null || input === undefined || limit === null || limit === undefined || limit === '') { | |
| return input; | |
| } | |
| if (angular.isUndefined(respectWordBoundaries)) { | |
| respectWordBoundaries = true; | |
| } | |
| if (angular.isUndefined(suffix)) { |
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
| <?php | |
| namespace Company\Extension\UserFunctions; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2014 Armin Rüdiger Vieweg <armin@v.ieweg.de> | |
| * | |
| * All rights reserved | |
| * |
NewerOlder