Skip to content
Snippets Groups Projects
  1. May 29, 2020
  2. Apr 15, 2020
  3. Apr 14, 2020
  4. Apr 13, 2020
  5. Dec 11, 2019
  6. Oct 07, 2019
  7. Feb 05, 2019
  8. Oct 01, 2018
    • Benni Mack's avatar
      [TASK] Streamline phpdoc annotations in EXT:extbase · 65a55111
      Benni Mack authored
      EXT:extbase uses @api and @internal phpDoc annotations. Going with a cleaner
      approach with marking code as just @internal, and everything not annotated
      as @internal is public, is the way to go, also the way PSR-5 is heading.
      
      For EXT:extbase: Every PHP class that had nothing marked, is now @internal,
      everything that was @api is now implicitly part of TYPO3 Core API.
      
      On top, all license headers and @license annotations have been streamlined.
      
      This means:
      - TYPO3 Core's PHP classes area all public API by default
         unless marked as @internal or an extension class
      - @api is not allowed anymore and will be restricted in
         the future from adding.
      - @internal should be used for everything that should
         not be explicitly exposed as public API in the future.
      - Everything under Tests/ is not part of TYPO3's Public API
      
      Resolves: #86521
      Releases: master
      Change-Id: I83c5a27d9af001929142d2620600668ad0a84c92
      Reviewed-on: https://review.typo3.org/58535
      
      
      Tested-by: default avatarTYPO3com <no-reply@typo3.com>
      Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
      Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
      Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
      Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
      65a55111
  9. Sep 02, 2018
  10. Jul 06, 2018
  11. Oct 17, 2017
    • Alexander Schnitzler's avatar
      [!!!][TASK] Replace ClassInfo with ClassSchema · 73b5e17d
      Alexander Schnitzler authored
      Extbase came along with two main caches for reflection data.
      extbase_reflection and extbase_object. The latter mostly stored
      information that were relevant to the dependency injection, like
      inject methods and properties and constructor parameters. The
      information was gathered by actual reflection and by analysing
      doc blocks of properties and methods.
      
      extbase_reflection stored similar reflection and doc block data
      about objects but mainly for the parts outside dependency injection.
      For example, the validation resolver used it to identify @validate
      tags, the ActionController used it to identity which properties not
      to validate. The ORM also used it a lot to find annotated types via
      @var and so on.
      
      There were a few issues with these two approaches:
      
      - A lot of redundant data was fetched
      - Data was fetched multiple times at different locations
      - The extbase_reflection cache was stored each plugin seperately,
        resulting in a lot of redundant cache data for each plugin cache
      - At a lot of places, the reflection service was used to reflect
        objects, but the data wasn't cached or taken from a cache resulting
        in performance drawbacks
      
      This patch solves these issues with several approaches:
      
      - The extbase_object cache has been removed completely and all
        necessary information about objects, mainly @inject stuff, is
        now fetched from the ReflectionService as well.
      - The ReflectionService does still create ClassSchema instances
        but these were improved a lot. All necessary information is now
        gathered during the instantiation of ClassSchema instances. That
        means that all necessary data is fetched once and then it can be
        used everywhere making any further reflection superfluous.
      - As runtime reflection has been removed completey, along with it
        several reflection classes, that analyzed doc blocks, have been
        removed as well. These are no longer necessary.
      - The extbase_reflection cache is no longer plugin based and will
        no longer be stored in the database in the first place. Serialized
        ClassSchema instances will stored in typo3temp.
      
      Releases: master
      Resolves: #57594
      Resolves: #55654
      Change-Id: I93b905c85c4f28775f014ca8b585347bf6f1e7d3
      Reviewed-on: https://review.typo3.org/54381
      
      
      Reviewed-by: default avatarBenni Mack <benni@typo3.org>
      Tested-by: default avatarBenni Mack <benni@typo3.org>
      Tested-by: default avatarTYPO3com <no-reply@typo3.com>
      Reviewed-by: default avatarSusanne Moog <susanne.moog@typo3.org>
      Tested-by: default avatarSusanne Moog <susanne.moog@typo3.org>
      73b5e17d
  12. Aug 23, 2017
  13. Jul 17, 2017
  14. Jan 19, 2017
  15. Nov 07, 2016
  16. Oct 10, 2016
  17. Oct 07, 2016
    • Claus Due's avatar
      [!!!][CLEANUP] ObjectAccess · ddaa91c0
      Claus Due authored
      This patch aims to clean up and improve the
      ObjectAccess class which currently does a
      *lot* of unnecessary operations, but is intended
      for use in many places especially with repeated
      use. Therefore, any even small optimisation in
      this class would be a benefit.
      
      * Uses more native PHP methods where reasonable
      * Uses fewer method calls where reasonable
      * Gets rid of a variable passed by reference
      * More cases return NULL rather than throw Exceptions
      * Fastest decisions and access methods come first
      * Reflection-based access isolated to edge cases and
        access with the "force" flag being TRUE.
      * Sacrifices ability to read objects of types other
        than persisted objects contained in an ObjectStorage
        or subclass of ObjectStorage.
      * Changes verdict from FALSE to TRUE when determining
        if a dynamically added property exists on an object
        (these are, by definition, publicly accessible).
      
      Change-Id: Ib17051a43f61bb73a1bd5a8a6c710f54eec8f769
      Resolves: #66995
      Releases: master
      Reviewed-on: https://review.typo3.org/39585
      
      
      Tested-by: default avatarTYPO3com <no-reply@typo3.com>
      Reviewed-by: default avatarStefan Neufeind <typo3.neufeind@speedpartner.de>
      Tested-by: default avatarStefan Neufeind <typo3.neufeind@speedpartner.de>
      Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
      Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
      ddaa91c0
  18. Aug 30, 2016
  19. Oct 09, 2015
  20. Jan 19, 2015
  21. Dec 17, 2014
  22. Dec 13, 2014
  23. Oct 28, 2014
  24. Oct 25, 2014
  25. Jul 03, 2014
    • Markus Klein's avatar
      [BUGFIX] Fix property access for ObjectStorage · 10d5deb5
      Markus Klein authored
      When enabling access to the content of ObjectStorages by
      integer number, it was overlooked that property access might
      be desired too, which has also been working before.
      
      Fix this by not aborting the access when addressing a
      non-integer property on ObjectStorages.
      
      Resolves: #59412
      Releases: 6.3, 6.2
      Change-Id: I59b83ed0bf0c965efcdf0aad9440d634953a221e
      Reviewed-on: https://review.typo3.org/30628
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Marcin Sągol
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      10d5deb5
  26. Jul 01, 2014
    • Markus Klein's avatar
      [CLEANUP] Extbase reflection classes · 73978383
      Markus Klein authored
      Remove unnessessary full qualified class names.
      Cleanup docheaders.
      
      Resolves: #57878
      Releases: 6.3
      Change-Id: I5bcdb80c27da1698fd1446a001907d83c6845507
      Reviewed-on: https://review.typo3.org/29444
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      73978383
  27. Jun 22, 2014
    • Michael Schams's avatar
      [TASK] Re-work/simplify copyright header in PHP files - Part 8 · bde6364c
      Michael Schams authored
      This patch replaces the copyright/license header in PHP files with a
      new, simplified one. The new header does not show the year figure, nor
      an author name, and refers to the LICENSE.txt file for the full
      copyright information. License is: GPL2 or any later version.
      
      This is a multi-part commit due to the huge number of changed files.
      See issue #59784 for further details.
      
      Resolves: #59784
      Releases: 6.3, 6.2
      Change-Id: I1eacf9bf4537776e850d091d9d50bc72f8c2b20d
      Reviewed-on: https://review.typo3.org/31029
      Reviewed-by: Krzysztof Adamczyk
      Tested-by: Krzysztof Adamczyk
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      bde6364c
  28. Jun 02, 2014
    • Helmut Hummel's avatar
      [BUGFIX] Make object access work with ObjectStorage · 9af2142b
      Helmut Hummel authored
      ObjectAccess->getPropertyPath() does not work with
      ObjectStorage and numerical indexes, but it should be
      because without it form fluid fields cannot be
      properly handled as the value is always null.
      
      Fixing fetching objects from ObjectStorage by index
      will also enable shorter access of single objects in Fluid.
      
      Imagine you want to render the first image in your
      template. Previously you had to write this:
      
      <f:for each="{object.images}" as="image" iteration="iterator">
      	<f:if condition="{iterator.isFirst}">
      		<f:image image="{image}" alt="" width="50"/>
      	</f:if>
      </f:for>
      
      Now you can just write:
      
      <f:image image="{object.images.0}" alt="" width="50"/>
      
      Resolves: #37126
      Related: #37000
      Releases: 6.2
      Change-Id: I45122bd145b5a179ad3e9e3894520f9a614906c8
      Reviewed-on: https://review.typo3.org/29923
      Reviewed-by: Markus Klein
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Fabien Udriot
      Reviewed-by: Tymoteusz Motylewski
      Tested-by: Tymoteusz Motylewski
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      9af2142b
  29. Mar 24, 2014
    • Helmut Hummel's avatar
      [BUGFIX] Don't access property if subject is scalar · 904dfaaa
      Helmut Hummel authored
      Trying to access a property if the subject is
      a string, causes the class loader to be triggered
      as is_callable is invoked.
      
      We can avoid that by checking if the subject
      is an object or array. We can neglect that
      is_scalar also returns false for resource types
      as this will not really happen in practice.
      
      Resolves: #56993
      Releases: 6.2
      Change-Id: I94754cd919acc857cd9a8b8e486080c0bf567112
      Reviewed-on: https://review.typo3.org/28586
      Reviewed-by: Alexander Opitz
      Tested-by: Alexander Opitz
      Reviewed-by: Christian Weiske
      Tested-by: Christian Weiske
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      904dfaaa
  30. Jan 13, 2014
  31. Oct 01, 2013
    • Christian Kuhn's avatar
      [TASK] Remove closing PHP tags · 77f29a3c
      Christian Kuhn authored
      Change-Id: Iaa92566c53301e49396fc9fb26b0b339c48d567b
      Resolves: #52360
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/24212
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Ernesto Baschny
      Tested-by: Ernesto Baschny
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      77f29a3c
  32. Apr 23, 2013
    • Alexander Schnitzler's avatar
      [TASK] Cleanup Extbase for 6.1 release · a6882a96
      Alexander Schnitzler authored
      * Remove whitespace after closing php tag
      * Fix PhpDocComments
      
      Releases: 6.1
      Resolves: #47216
      Change-Id: I8f35f9adb65c75cb11e1045bbade3d0b6708db86
      Reviewed-on: https://review.typo3.org/19976
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Alexander Schnitzler
      Tested-by: Alexander Schnitzler
      a6882a96
  33. Apr 01, 2013
  34. Mar 06, 2013
    • Christian Kuhn's avatar
      [BUGFIX] Prevent Extbase warnings accessing ObjectStorages with strings · 7cc89657
      Christian Kuhn authored
      Feeding ObjectAccess->getPropertyPath() with an ObjectStorage raises
      warnings, that might flood the errorLog quickly.
      
      With the patch those warnings are prevented.
      Additionaly the patch delivers a test scenario explaining the missing
      ability to properly resolve the properny path, when it comes to
      ObjectStorages.
      
      Fixes: #37000
      Releases: 6.1
      Change-Id: I3acf5aef281894f06f1e35f45ac14ba692a90b3e
      Reviewed-on: https://review.typo3.org/18527
      Reviewed-by: Wouter Wolters
      Reviewed-by: Pascal Dürsteler
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Tested-by: Wouter Wolters
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      7cc89657
  35. Dec 11, 2012
  36. Nov 20, 2012
  37. Oct 29, 2012