return $helperInstance;
}
+ /**
+ * Renders the link content (HTML code) with given link text and optional
+ * extra content
+ *
+ * @param $linkText Link text to set in link
+ * @param $extraContent Optional extra HTML content
+ * @return $linkContent Rendered text link content
+ */
+ private function renderLinkContentWithTextExtraContent ($linkText, $extraContent="") {
+ // Construct link content
+ $linkContent = sprintf("<a href=\"%s%s\" title=\"%s\">%s</a>",
+ $this->getLinkBase(),
+ $extraContent,
+ $linkText,
+ $linkText
+ );
+
+ // Return it
+ return $linkContent;
+ }
+
/**
* Setter for link name
*
// Check if a previous group was opened
if (!$this->ifGroupOpenedPreviously()) {
// No group was opened before!
- throw new NoGroupOpenedException(array($this, $groupNote), self::EXCEPTION_GROUP_NOT_OPENED);
+ throw new NoGroupOpenedException(array($this, $linkAction."(".$linkText.")"), self::EXCEPTION_GROUP_NOT_OPENED);
} // END - if
// Default parameter seperator is &
$seperator = "&";
- // Get link base
- $linkBase = $this->getLinkBase();
-
// Is there a question mark in?
- $linkArray = explode("?", $linkBase);
+ $linkArray = explode("?", $this->getLinkBase());
if (count($linkArray) == 0) {
// No question mark
$seperator = "?";
- }
+ } // END - if
- // Renders the link content
- $linkContent = sprintf("<a href=\"%s%saction=%s\" title=\"%s\">%s</a>",
- $linkBase,
+ // Prepare action
+ $action = sprintf("%saction=%s",
$seperator,
- $linkAction,
- $linkText,
- $linkText
+ $linkAction
);
+ // Renders the link content
+ $linkContent = $this->renderLinkContentWithTextExtraContent($linkText, $action);
+
+ // Add the content to the previous group
+ $this->addContentToPreviousGroup($linkContent);
+ }
+
+ /**
+ * Adds a default link (no extra parameters) to the content with specified
+ * language id string.
+ *
+ * @param $languageId Language id string to use
+ * @return void
+ */
+ public function addLinkWithTextById ($languageId) {
+ // Resolve the language string
+ $languageResolved = $this->getLanguageInstance()->getMessage($languageId);
+
+ // Now add the link
+ $linkContent = $this->renderLinkContentWithTextExtraContent($languageResolved);
+
// Add the content to the previous group
$this->addContentToPreviousGroup($linkContent);
}