You are here

public function InstapageCmsPluginViewModel::__set in Instapage plugin 8.3

Same name and namespace in other branches
  1. 7.3 core/models/InstapageCmsPluginViewModel.php \InstapageCmsPluginViewModel::__set()

Magic method to set up a template attribute.

Parameters

string $name Name of the attribute.:

mixed $value Value of the attribute.:

File

core/models/InstapageCmsPluginViewModel.php, line 73

Class

InstapageCmsPluginViewModel
Class responsible for displaying a template files.

Code

public function __set($name, $value) {
  $this->templateData[$name] = $value;
}