You are here

public function TagadelicCloud::drupal in Tagadelic 7.2

Getter for drupal

Return value

DrupalWrapper value in $this::$drupal.

File

./TagadelicCloud.php, line 75

Class

TagadelicCloud
class TagadelicCloud TagadelicCloud, contains a list of tags and methods to manipulate this set of tags. It can operate on the list of tags.

Code

public function drupal() {
  if (empty($this->drupal)) {
    $this->drupal = new TagadelicDrupalWrapper();
  }
  return $this->drupal;
}