Thunder\Shortcode\Processor\Processor::withAutoProcessContent PHP Method

withAutoProcessContent() public method

Whether shortcode content will be automatically processed and handler already receives shortcode with processed content. If false, every shortcode handler needs to process content on its own. Default true.
public withAutoProcessContent ( boolean $flag ) : self
$flag boolean True if enabled (default), false otherwise
return self
    public function withAutoProcessContent($flag)
    {
        if (!is_bool($flag)) {
            $msg = 'Auto processing flag must be a boolean value!';
            throw new \InvalidArgumentException($msg);
        }
        $self = clone $this;
        $self->autoProcessContent = (bool) $flag;
        return $self;
    }

Usage Example

Example #1
0
 public function testProcessContentIfHasChildHandlerButNotParent()
 {
     $handlers = new HandlerContainer();
     $handlers->add('valid', function (ShortcodeInterface $s) {
         return $s->getName();
     });
     $text = 'x [invalid   ] [valid /] [/invalid] y';
     $processor = new Processor(new RegexParser(), $handlers);
     $this->assertSame('x [invalid   ] valid [/invalid] y', $processor->withAutoProcessContent(true)->process($text));
     $this->assertSame('x [invalid   ] [valid /] [/invalid] y', $processor->withAutoProcessContent(false)->process($text));
 }
All Usage Examples Of Thunder\Shortcode\Processor\Processor::withAutoProcessContent