diff options
author | Silvio <silvio@devlet.com.br> | 2010-08-24 17:22:14 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-08-24 17:22:14 -0300 |
commit | f29befe3b6f94962a19fd554cd66488db6ccc5fc (patch) | |
tree | afba7fc383412816f5a6b268c94df7c852458f58 /classes | |
parent | d1745b99df6d46f901e8c4eec686ed38dcbdacd8 (diff) | |
download | cinisis-f29befe3b6f94962a19fd554cd66488db6ccc5fc.tar.gz cinisis-f29befe3b6f94962a19fd554cd66488db6ccc5fc.tar.bz2 |
Mutual field<->subfield app link
Diffstat (limited to 'classes')
-rw-r--r-- | classes/helpers/CinisisDisplayHelper.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/classes/helpers/CinisisDisplayHelper.php b/classes/helpers/CinisisDisplayHelper.php index e6666d7..7802f42 100644 --- a/classes/helpers/CinisisDisplayHelper.php +++ b/classes/helpers/CinisisDisplayHelper.php @@ -227,6 +227,38 @@ class CinisisDisplayHelper { } /** + * Format a link to the field app. + * + * @param $entry + * Entry number. + * + * @param $fid + * Field code. + * + * @return + * Formatted link. + */ + protected static function webFieldLink($entry, $fid) { + return "Field search: ". self::link('field.php', '?entry='. $entry .'&fid='. $fid, $entry); + } + + /** + * Format a link to the field app. + * + * @param $entry + * Entry number. + * + * @param $fid + * Field code. + * + * @return + * Formatted link. + */ + protected static function webRepetitionLink($entry, $fid) { + return "Repetition search: ". self::link('repetition.php', '?entry='. $entry .'&fid='. $fid, $entry); + } + + /** * Draws tags for opening a table. */ protected static function webOpenTable() { |