class PDCustomAttribute in GlobalLink Connect for Drupal 7.7
Hierarchy
- class \PDCustomAttribute
Expanded class hierarchy of PDCustomAttribute
File
- gl_ws/
glc/ model/ CustomAttribute.inc.php, line 2
View source
class PDCustomAttribute {
/**
* Is attribute required. Boolean
*/
public $mandatory;
/**
* Attribute name
*/
public $name;
/**
* Attribute type
*/
public $type;
/**
* Attribute value
*/
public $values;
function __construct($customAttribute = NULL) {
if (isset($customAttribute)) {
$this->mandatory = $customAttribute->mandatory;
$this->name = $customAttribute->name;
$this->type = $customAttribute->type;
$this->values = $customAttribute->values;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PDCustomAttribute:: |
public | property | Is attribute required. Boolean | |
PDCustomAttribute:: |
public | property | Attribute name | |
PDCustomAttribute:: |
public | property | Attribute type | |
PDCustomAttribute:: |
public | property | Attribute value | |
PDCustomAttribute:: |
function |