Show
Ignore:
Timestamp:
09/02/10 11:27:17 (21 months ago)
Author:
gnum
Message:

Fixes #103, also moved single participant view to /singles/ so that it would follow the general logic

Files:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/views/default/edufeedr/singles/educourse_participant.php

    r75 r157  
    1010                if (edufeedrCanEditEducourse($vars['entity'])) { 
    1111                        echo '  '; 
    12                         /*translation:Edit participant*/ 
     12                        /*translation:Edit*/ 
    1313                        echo '<a href="' . $vars['url'] . 'pg/edufeedr/edit_participant/' . $vars['entity']->getGUID() . '/' . $vars['participant']->id . '">' . elgg_echo('edufeedr:course:edit:participant') . '</a>'; 
    1414                        echo '&nbsp;&nbsp;'; 
    1515                        echo elgg_view('output/confirmlink', array( 
    1616                                'href' => $vars['url'] . 'action/edufeedr/remove_participant?educourse=' . $vars['entity']->getGUID() . '&participant_number=' . $vars['participant']->id, 
    17                                 /*translation:Remove participant*/ 
     17                                /*translation:Remove*/ 
    1818                                'text' => elgg_echo('edufeedr:course:remove:participant'), 
    1919                                /*translation:Are you sure you want to remove participant %s?*/ 
    20                                 'confirm' => sprintf(elgg_echo('edufeedr:course:remove:participant:confirmation'), $vars['participant']->firstname . ' ' . $vars['participant']->lastname) 
     20                                'confirm' => sprintf(elgg_echo('edufeedr:course:remove:participant:confirmation'), $vars['participant']->firstname . ' ' . $vars['participant']->lastname), 
     21                                'class' => 'edufeedr_action_delete_or_remove' 
    2122                                ) 
    2223                        );