Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
20256295
Commit
20256295
authored
Jul 13, 2012
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit '
48967e5b
' into develop
parents
99016c93
48967e5b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
library/Solarium/Query/Select/Component/Highlighting.php
library/Solarium/Query/Select/Component/Highlighting.php
+51
-0
No files found.
library/Solarium/Query/Select/Component/Highlighting.php
View file @
20256295
...
@@ -437,6 +437,57 @@ class Solarium_Query_Select_Component_Highlighting extends Solarium_Query_Select
...
@@ -437,6 +437,57 @@ class Solarium_Query_Select_Component_Highlighting extends Solarium_Query_Select
return
$this
->
getOption
(
'simplepostfix'
);
return
$this
->
getOption
(
'simplepostfix'
);
}
}
/**
* Set tag prefix option
*
* Solr option h1.tag.post
*
* @param string $prefix
* @return Solarium_Query_Select_Component_Highlighting Provides fluent interface
*/
public
function
setTagPrefix
(
$prefix
)
{
return
$this
->
_setOption
(
'tagprefix'
,
$prefix
);
}
/**
* Get tag prefix option
*
* Solr option hl.tag.pre
*
* @return string|null
*/
public
function
getTagPrefix
()
{
return
$this
->
getOption
(
'tagprefix'
);
}
/**
* Set tag postfix option
*
* Solr option h1.tag.post
*
* @param string $postfix
* @return Solarium_Query_Select_Component_Highlighting Provides fluent interface
*/
public
function
setTagPostfix
(
$postfix
)
{
return
$this
->
_setOption
(
'tagpostfix'
,
$postfix
);
}
/**
* Get tag postfix option
*
* Solr option hl.tag.post
*
* @return string|null
*/
public
function
getTagPostfix
()
{
return
$this
->
getOption
(
'tagpostfix'
);
}
/**
/**
* Set fragmenter option
* Set fragmenter option
*
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment