You are here

public static function ViewsHandlerInterface::breakString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

\stdClass 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 140
Contains \Drupal\views\Plugin\views\ViewsHandlerInterface.

Class

ViewsHandlerInterface
Provides an interface for all views handlers.

Namespace

Drupal\views\Plugin\views

Code

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