aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/default/search/startblurb.php8
-rw-r--r--views/default/user/search/finishblurb.php17
-rw-r--r--views/default/user/search/startblurb.php8
3 files changed, 33 insertions, 0 deletions
diff --git a/views/default/search/startblurb.php b/views/default/search/startblurb.php
new file mode 100644
index 000000000..8aa1ea371
--- /dev/null
+++ b/views/default/search/startblurb.php
@@ -0,0 +1,8 @@
+
+<p>
+ <?php
+
+ echo sprintf(elgg_echo("tag:search:startblurb"),$vars['tag']);
+
+ ?>
+</p> \ No newline at end of file
diff --git a/views/default/user/search/finishblurb.php b/views/default/user/search/finishblurb.php
new file mode 100644
index 000000000..bc7b9d787
--- /dev/null
+++ b/views/default/user/search/finishblurb.php
@@ -0,0 +1,17 @@
+<?php
+
+ if ($vars['count'] > $vars['threshold']) {
+
+?>
+<p>
+ <?php
+
+ echo elgg_echo("user:search:finishblurb");
+
+ ?>
+</p>
+<?php
+
+ }
+
+?> \ No newline at end of file
diff --git a/views/default/user/search/startblurb.php b/views/default/user/search/startblurb.php
new file mode 100644
index 000000000..c987dd8dc
--- /dev/null
+++ b/views/default/user/search/startblurb.php
@@ -0,0 +1,8 @@
+
+<p>
+ <?php
+
+ echo sprintf(elgg_echo("user:search:startblurb"),$vars['tag']);
+
+ ?>
+</p> \ No newline at end of file