setAction() public method

Sets the action.
public setAction ( string $action )
$action string
 /**
  * Sets the action.
  *
  * @param ContaoContext $context
  * @param int           $level
  */
 private function updateAction(ContaoContext $context, $level)
 {
     if (null !== $context->getAction()) {
         return;
     }
     if ($level >= Logger::ERROR) {
         $context->setAction(ContaoContext::ERROR);
     } else {
         $context->setAction(ContaoContext::GENERAL);
     }
 }
Example #2
0
 /**
  * Tests the setter and getter methods.
  */
 public function testSettersAndGetters()
 {
     $context = new ContaoContext('foo');
     $this->assertEquals('foo', $context->getFunc());
     $this->assertNull($context->getAction());
     $this->assertNull($context->getUsername());
     $this->assertNull($context->getIp());
     $this->assertNull($context->getBrowser());
     $this->assertNull($context->getSource());
     $context->setAction('action');
     $context->setUsername('username');
     $context->setIp('1.2.3.4');
     $context->setBrowser('Mozilla');
     $context->setSource('Foo::bar()');
     $this->assertEquals(json_encode(['func' => 'foo', 'action' => 'action', 'username' => 'username', 'ip' => '1.2.3.4', 'browser' => 'Mozilla']), (string) $context);
 }