You are here

public static function ViewsHandlerInterface::breakString in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/ViewsHandlerInterface.php \Drupal\views\Plugin\views\ViewsHandlerInterface::breakString()
  2. 10 core/modules/views/src/Plugin/views/ViewsHandlerInterface.php \Drupal\views\Plugin\views\ViewsHandlerInterface::breakString()

Breaks x,y,z and x+y+z into an array.

Parameters

string $str: The string to split.

bool $force_int: Enforce a numeric check.

Return value

object A stdClass object containing value and operator properties.

1 method overrides ViewsHandlerInterface::breakString()
HandlerBase::breakString in core/modules/views/src/Plugin/views/HandlerBase.php
Breaks x,y,z and x+y+z into an array.

File

core/modules/views/src/Plugin/views/ViewsHandlerInterface.php, line 135

Class

ViewsHandlerInterface
Provides an interface for all views handlers.

Namespace

Drupal\views\Plugin\views

Code

public static function breakString($str, $force_int = FALSE);