Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

Ember 6.1 Released

Today the Ember project is releasing version 6.1 of Ember.js and Ember CLI.
This release kicks off the 6.2 beta cycle for all sub-projects. We encourage our community (especially addon authors) to help test these beta builds and report any bugs before they are published as a final release in six weeks' time. The ember-try addon is a great way to continuously test your projects against the latest Ember releases.
You can read more about our general release process here:





[news] Yii Message Translator 3.1

Minor version of Yii Message Translator package was tagged.

  • Throw InvalidArgumentException when missed "one" plural key.
  • Fixed incorrect locale usage when category source is not exist and specified fallback locale.
  • Fixed the nullable parameter declarations for compatibility with PHP 8.4.




Introducing the new Twig Playground

I'm very excited to announce the launch of Twig
Playground
, a new tool that allows you to test
and experiment with Twig templates in a sandbox environment. It is entirely
web-based, with no backend.

Twig templates are rendered via PHP Wasm and the state is preserved in the
URL for easy sharing. It can be used to try Twig, quickly test new features, and
it is the perfect tool to improve bug reports with reproducible examples.





[news] Yii View Renderer 7.3

Minor version of Yii View Renderer were tagged.

  • Raised required yiisoft/view version to ^12.
  • Added CsrfTokenMiddleware support in CsrfViewInjection.
  • Fixed state leak in some combinations of ViewRenderer render methods.




Filtering Collection Objects by Type with whereInstanceOf

Laravel's whereInstanceOf method provides a clean way to filter collections based on object types, particularly useful when dealing with polymorphic relationships or mixed object collections.





Adding Request Context in Laravel Applications

Laravel's Context facade enhances application insight by allowing you to add persistent metadata throughout your request lifecycle. This context automatically enriches your logs with valuable debugging information.