| 227 |
|
|
| 228 |
// Returns true if a specific property of the content object matches the criteria. |
// Returns true if a specific property of the content object matches the criteria. |
| 229 |
function voting_actions_content_property_handler($context, $condition) { |
function voting_actions_content_property_handler($context, $condition) { |
| 230 |
if (!empty($condition['data']['property']) && !empty($context['contet']->$condition['data']['property'])) { |
if (($prop = $condition['data']['property']) && ($content = $context['content'])) { |
| 231 |
return _voting_actions_compare($context['content']->$condition['data']['property'], $condition['data']['operator'], $condition['data']['value']); |
return _voting_actions_compare($content->$prop, $condition['data']['operator'], $condition['data']['value']); |
| 232 |
} |
} |
| 233 |
return FALSE; |
return FALSE; |
| 234 |
} |
} |