123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- ?>
- <span class="<?php print $flag_wrapper_classes; ?>">
- <?php if ($link_href): ?>
- <a href="<?php print $link_href; ?>" title="<?php print $link_title; ?>" class="<?php print $flag_classes ?>" rel="nofollow">
- <span class="op">
- <?php if($action == "flag"): ?>
- +
- <?php elseif ($action == 'unflag'): ?>
- x
- <?php endif; ?>
- </span>
- <span><?php print $link_text; ?></span>
- </a>
- <?php //<span class="flag-throbber"> </span> ?>
- <?php else: ?>
- <span class="<?php print $flag_classes ?>"><?php print $link_text; ?></span>
- <?php endif; ?>
- <?php if ($after_flagging && false): ?>
- <span class="flag-message flag-<?php print $status; ?>-message">
- <?php print $message_text; ?>
- </span>
- <?php endif; ?>
- </span>
|