You are here

public function ContentLock::verbose in Content locking (anti-concurrent editing) 8.2

Same name and namespace in other branches
  1. 8 src/ContentLock/ContentLock.php \Drupal\content_lock\ContentLock\ContentLock::verbose()

Check if locking is verbose.

Return value

bool Return true if locking is verbose.

1 call to ContentLock::verbose()
ContentLock::locking in src/ContentLock/ContentLock.php
Try to lock a document for editing.

File

src/ContentLock/ContentLock.php, line 376

Class

ContentLock
Class ContentLock.

Namespace

Drupal\content_lock\ContentLock

Code

public function verbose() {
  return $this->config
    ->get('verbose');
}