Lines Matching refs:returnonly

1177      * @param bool   $returnonly whether to return odt or write to doc attribute
1180 $height=NULL, $cache=NULL, $linking=NULL, $returnonly = false) { argument
1190 if ($returnonly) {
1200 if($returnonly) {
1212 if($returnonly) {
1233 * @param bool $returnonly whether to return odt or write to doc attribute
1236 $height=NULL, $cache=NULL, $linking=NULL, $returnonly = false) { argument
1244 if ($returnonly) {
1268 $doc .= $this->document->openImageLink ($src, $returnonly);
1270 $doc .= $this->_odtAddImage($tmp_name, $width, $height, $align, $title, $returnonly);
1272 $doc .= $this->document->closeImageLink ($returnonly);
1278 if($returnonly) {
1290 * @param bool $returnonly whether to return odt or write to doc attribute
1293 function camelcaselink($link, $returnonly = false) { argument
1294 if($returnonly) {
1323 * @param bool $returnonly whether to return odt or write to doc attribute
1327 function internallink($id, $name = NULL, $returnonly = false) { argument
1344 if($returnonly) {
1345 return $this->locallink_with_text($hash, $id, $name, $returnonly);
1347 $this->locallink_with_text($hash, $id, $name, $returnonly);
1350 if($returnonly) {
1351 return $this->_doLink($url, $name, $returnonly);
1353 $this->_doLink($url, $name, $returnonly);
1363 * @param bool $returnonly whether to return odt or write to doc attribute
1365 function externallink($url, $name = NULL, $returnonly = false) { argument
1368 if($returnonly) {
1369 return $this->_doLink($url, $name, $returnonly);
1371 $this->_doLink($url, $name, $returnonly);
1384 function locallink_with_text($hash, $id = NULL, $text = NULL, $returnonly = false){ argument
1385 if (!$returnonly) {
1415 * @param bool $returnonly whether to return odt or write to doc attribute
1417 function interwikilink($match, $name = NULL, $wikiName, $wikiUri, $returnonly = false) { argument
1420 if($returnonly) {
1421 return $this->_doLink($url, $name, $returnonly);
1423 $this->_doLink($url, $name, $returnonly);
1434 * @param bool $returnonly whether to return odt or write to doc attribute
1436 function windowssharelink($url, $name = NULL, $returnonly = false) { argument
1438 if($returnonly) {
1452 * @param bool $returnonly whether to return odt or write to doc attribute
1454 function emaillink($address, $name = NULL, $returnonly = false) { argument
1456 if($returnonly) {
1457 return $this->_doLink("mailto:".$address, $name, $returnonly);
1459 $this->_doLink("mailto:".$address, $name, $returnonly);
1471 function _doLink($url,$name, $returnonly = false){ argument
1476 $doc .= $this->document->openImageLink ($url, $returnonly);
1486 $returnonly);
1489 $doc .= $this->document->closeImageLink ($returnonly);
1492 $doc .= $this->document->insertHyperlink ($url, $name, NULL, NULL, $returnonly);
1651 * @param boolean $returnonly Only return code
1656 …, $width = NULL, $height = NULL, $align = NULL, $title = NULL, $style = NULL, $returnonly = false){ argument
1657 if ($returnonly) {
1658 … return $this->document->addImage($src, $width, $height, $align, $title, $style, $returnonly);
1660 $this->document->addImage($src, $width, $height, $align, $title, $style, $returnonly);
1669 * @param boolean $returnonly Only return code
1674 function _odtAddImageUseProperties($src, array $properties, $returnonly = false){ argument
1675 if ($returnonly) {
1676 return $this->document->addImageUseProperties($src, $properties, $returnonly);
1678 $this->document->addImageUseProperties($src, $properties, $returnonly);