Research and Findings. - Libbna/CUSTOM-CMS GitHub Wiki

This page contains all the research and findings done by the contributors.

04th January 2022 (Tuesday)

Libbna -

17th December 2021 (Friday)

Libbna -

  • for creating regions in our local project we can follow 2 approaches.
    1. https://befused.com/drupal/twig-child-new-region/ ----- we can do just like drupal, how the regions are created and parent & child templates are rendered - we can do this only if it is possible in non-drupal site -- need to do more research on it .
    2. or we can create different sections like wrappers which can act like REGIONS. - Using semantic tags.

16th December 2021 (Thursday)

Ruturaj -

  • Researched on a symfony component to replace the use of PHP superglobals in the custom-cms.
  • During this research came across the Symfony httpfoundation component. Symfony HttpFoundation Component

14th December 2021 (Tuesday).

Ruturaj -

  • Researched on rendering image in search result page.
  • Went through some modules like Search API Page .
  • Finally, was able to render image via overriding search-result.html.twig file.

Libbna

Example: _ Reflecting an alias will give you a reflection of the resolved class._

<?php

class X {

}

class_alias('X','Y'); class_alias('Y','Z'); $z = new ReflectionClass('Z'); echo $z->getName(); // X


10th December 2021 (Friday).

Ruturaj -

  • Researched about alternate ways to pull updates in feature branch from the newly updated master branch.
    • Referred this document : here.

Libbna ~

Vivek -