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
| .center { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| margin-right: -50%; | |
| transform: translate(-50%, -50%); | |
| } |
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
| This example uses the Rest API PHP SDK of Paypal. To get it, just use composer. |
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
| This example uses the Merchant PHP SDK of Paypal. To get it, just use composer. |
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
| # Autodetect text files | |
| * text=auto | |
| # Force the following filetypes to have unix eols, so Windows does not break them | |
| *.* text eol=lf | |
| # Force images/fonts to be handled as binaries | |
| *.jpg binary | |
| *.jpeg binary | |
| *.gif binary |
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 | |
| if (!defined ('TYPO3_MODE')) { | |
| die ('Access denied.'); | |
| } | |
| $TCA['tx_ext_domain_model_whatever'] = array( | |
| 'ctrl' => $TCA['tx_ext_domain_model_whatever']['ctrl'], | |
| 'interface' => array( | |
| 'showRecordFieldList' => 'sys_language_uid, l10n_parent, l10n_diffsource, hidden', | |
| ), |
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
| function sign(num) { | |
| // IE does not support method sign here | |
| if (typeof Math.sign === 'undefined') { | |
| if (num > 0) { | |
| return 1; | |
| } | |
| if (num < 0) { | |
| return -1; | |
| } | |
| return 0; |
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
| {namespace dce=ArminVieweg\Dce\ViewHelpers} | |
| <f:layout name="Default" /> | |
| <f:section name="main"> | |
| <f:for each="{dce:fal(field:'images', contentObject:contentObject)}" as="image"> | |
| <!-- This is the normal unresponsive way --> | |
| <f:image image="{image}" /> | |
| <!-- Here we referer to typoscript to render the responsive image --> | |
| <f:cObject typoscriptObjectPath="lib.responsiveImage" data="{image.uid}"></f:cObject> | |
| </f:for> |
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
| <config> | |
| <type>inline</type> | |
| <foreign_table>sys_file_reference</foreign_table> | |
| <foreign_field>uid_foreign</foreign_field> | |
| <foreign_sortby>sorting_foreign</foreign_sortby> | |
| <foreign_table_field>tablenames</foreign_table_field> | |
| <foreign_match_fields> | |
| <fieldname>images</fieldname> <!-- Name of variable! --> | |
| </foreign_match_fields> | |
| <foreign_label>uid_local</foreign_label> |
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\SzPagesettings\Hooks; | |
| /** | |
| * Class OverrideIconOverlay | |
| * | |
| * @package Sunzinet\SzFalExpiredate\Hooks | |
| */ | |
| class OverrideIconOverlayHook { |