}
/**
- * Add content
+ * Adds content directly
*
* @param $newContent New content to add
* @return void
$this->content .= (string) trim($newContent) . "\r\n";
}
+ /**
+ * Adds content to the previously opened group or sub group. If a sub group
+ * was found it will be taken. If no group/sub group is opened at the moment
+ * the code will be passed to addContent().
+ *
+ * @param $newContent New content to add
+ * @return void
+ */
+ protected final function addContentToPreviousGroup ($newContent) {
+ // Check for sub/group
+ if ($this->ifSubGroupOpenedPreviously()) {
+ // Get sub group id
+ $subGroupId = $this->getPreviousSubGroupId();
+
+ // Add the content
+ $this->subGroups[$subGroupId]['content'] .= $newContent;
+ } elseif ($this->ifGroupOpenedPreviously()) {
+ // Get group id
+ $groupId = $this->getPreviousGroupId();
+
+ // Add the content
+ $this->groups[$groupId]['content'] .= $newContent;
+ } else {
+ // Add it directly
+ $this->addContent($newContent);
+ }
+ }
+
/**
* Getter for content
*
// Is the group already there?
if (isset($this->groups[$groupId])) {
// Then throw an exception here
- $this->debugBackTrace();
throw new HelperGroupAlreadyCreatedException(array($this, $groupId), self::EXCEPTION_GROUP_ALREADY_FOUND);
} // END - if
// Is this a group and is it closed?
if ((isset($this->groups[$idx])) && ($this->groups[$this->groups[$idx]]['opened'] === false)) {
// Then add it's content
- $content .= $this->groups[$this->groups[$idx]]['content'];
+ $groupContent = $this->groups[$this->groups[$idx]]['content'];
+ //* DEBUG: */ echo "group={$this->groups[$idx]},content=<pre>".htmlentities($groupContent)."</pre><br />\n";
+ $content .= $groupContent;
} elseif ((isset($this->subGroups[$idx])) && ($this->subGroups[$this->subGroups[$idx]]['opened'] === false)) {
// Then add it's content
- $content .= $this->subGroups[$this->subGroups[$idx]]['content'];
+ $subGroupContent = $this->subGroups[$this->subGroups[$idx]]['content'];
+ //* DEBUG: */ echo "subgroup={$this->subGroups[$idx]},content=<pre>".htmlentities($subGroupContent)."</pre><br />\n";
+ $content .= $subGroupContent;
} else {
// Something went wrong
die("GROUP/SUB GROUP ERROR: {$idx}");
} // END - for
// Return it
+ //* DEBUG: */ echo "content=<pre>".htmlentities($content)."</pre> (".strlen($content).")<br />\n";
return $content;
}
);
// And add it maybe with a "li" tag
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
);
// And add it
- $this->addContent($inputContent);
+ $this->addContentToPreviousGroup($inputContent);
}
/**
$captchaInstance->renderCode();
// Get the content and add it to the helper
- $this->addContent($captchaInstance->renderContent());
+ $this->addContentToPreviousGroup($captchaInstance->renderContent());
}
/**