Skip to content
View DavidBruchmann's full-sized avatar
💭
It's all about compatibility
💭
It's all about compatibility
  • Webdevelopment Barlian
  • Bandung, West Java, Indonesia
Block or Report

Block or report DavidBruchmann

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. wdb_news_snapin wdb_news_snapin Public

    Layout-container for the TYPO3 extension news, with the advantage that the content-elements can be assigned to define-able areas. So Wiki-pages, Knowlegbases or just feature-rich articles can be cr…

    PHP 1

  2. Combining Composer, Git repositories... Combining Composer, Git repositories and Pear
    1
    # Combining composer, git repositories and pear
    2
    
                  
    3
    ## Problem
    4
    
                  
    5
    [Pear](https://pear.php.net/) is the the old PHP-packagemanager, but most 'packages' are nowadays managed with [composer](https://getcomposer.org/) on base of git-repositories.  
  3. wdb-content-conditions wdb-content-conditions Public

    This extension adds two different TypoScript conditions to check if content elements with special values on a site exist.

    PHP

  4. Update TYPO3 Powermail from 2.x to 5... Update TYPO3 Powermail from 2.x to 5.x or a newer version
    1
    # Just copy all tables from plural to singular naming
    2
    
                  
    3
    create table tx_powermail_domain_model_form LIKE tx_powermail_domain_model_forms;
    4
    insert tx_powermail_domain_model_form select * from tx_powermail_domain_model_forms;
    5
    
                  
  5. noopener noopener Public

    Forked from georgringer/noopener

    Add rel="noopener noreferrer" to all external links

    PHP

  6. Debug SQL query in TYPO3 8 Extbase Debug SQL query in TYPO3 8 Extbase
    1
    /** @var ObjectManager $objm */
    2
    $dbParser = $this->objectManager->get(\TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbQueryParser::class);
    3
    
                  
    4
    $doctrineQueryBuilder = $dbParser->convertQueryToDoctrineQueryBuilder($query);
    5
    $sql = $doctrineQueryBuilder->getSQL();