Skip to content

Instantly share code, notes, and snippets.

@einpraegsam
einpraegsam / InsertExample.php
Last active November 12, 2024 07:43
TYPO3 QueryBuilder example use
<?php
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Core\Utility\GeneralUtility;
// insert into tt_content (header, crdate, pid) VALUES ("New content", 123456789, 123);
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content');
$queryBuilder
->insert('tt_content')
->values([
'header' => 'New content',
@htuscher
htuscher / ExtbaseForceLanguage.php
Last active August 29, 2023 11:04
TYPO3 Extbase get record with language different than FE or 0
<?php
namespace Onedrop\Common\Service;
/***************************************************************
* Copyright notice
*
* (c) 2015 Hans Höchtl <[email protected]>
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
@janikvonrotz
janikvonrotz / TypoScript.xml
Created October 5, 2013 11:01
TypoScript Syntax Highlight #Typo3 #NotepadPlusPlus #XML
<NotepadPlus>
<?xml version="1.0" encoding="UTF-8" ?>
<AutoComplete>
<KeyWord name="absRefPrefix" />
<KeyWord name="accessibility" />
<KeyWord name="accessKey" />
<KeyWord name="ACT" />
<KeyWord name="ACTIFSUB" />
<KeyWord name="ACTIFSUBRO" />
<KeyWord name="ACTRO" />
@SimonWpt
SimonWpt / t3_empty_temp.sql
Created September 26, 2013 13:38
TYPO3: Löschen der Tabelleninhalte des Caches, der indexed_search und des Crawlers
TRUNCATE TABLE cache_extensions;
TRUNCATE TABLE cache_hash;
TRUNCATE TABLE cache_imagesizes;
TRUNCATE TABLE cache_md5params;
TRUNCATE TABLE cache_pages;
TRUNCATE TABLE cache_pagesection;
TRUNCATE TABLE cache_typo3temp_log;
TRUNCATE TABLE index_fulltext;
TRUNCATE TABLE index_grlist;
TRUNCATE TABLE index_phash;