blob: 866b7d21e195d317d7f4daac3e3c40756cc9d437 [file] [log] [blame]
<?
class benefit {
var $name; // Just a short 50 character heading summarizing benefit
var $description; // The elaborate description
var $how_to_engage; // HTML description on how to leverage this benefit if you're a member. "click here"
var $tags = array(); // Used for Categorizing
function addTags() {
//no need to do checking as this code is limited use
$args = func_get_args();
$this->tags = array_merge($this->tags, $args);
}
}
?>