main/course_progress/thematic_advance.php 1 location
|
@@ 234-237 (lines=4) @@
|
| 231 |
|
echo '<div class="actions">'; |
| 232 |
|
echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&action=thematic_details">'. |
| 233 |
|
Display::return_icon('back.png', get_lang("BackTo"), '', ICON_SIZE_MEDIUM).'</a>'; |
| 234 |
|
if (api_is_allowed_to_edit(false, true)) { |
| 235 |
|
echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&action=thematic_advance_add&thematic_id='.$thematic_id.'"> '. |
| 236 |
|
Display::return_icon('add.png', get_lang('NewThematicAdvance'), '', ICON_SIZE_MEDIUM).'</a>'; |
| 237 |
|
} |
| 238 |
|
echo '</div>'; |
| 239 |
|
$table = new SortableTable( |
| 240 |
|
'thematic_advance_list', |
main/inc/lib/glossary.lib.php 1 location
|
@@ 376-379 (lines=4) @@
|
| 373 |
|
// action links |
| 374 |
|
//echo '<div class="actions">'; |
| 375 |
|
$actionsLeft = ''; |
| 376 |
|
if (api_is_allowed_to_edit(null, true)) { |
| 377 |
|
$actionsLeft .= '<a href="index.php?'.api_get_cidreq().'&action=addglossary&msg=add?'.api_get_cidreq().'">'. |
| 378 |
|
Display::return_icon('new_glossary_term.png', get_lang('TermAddNew'), '', ICON_SIZE_MEDIUM).'</a>'; |
| 379 |
|
} |
| 380 |
|
|
| 381 |
|
$actionsLeft .= '<a href="index.php?'.api_get_cidreq().'&action=export">'. |
| 382 |
|
Display::return_icon('export_csv.png', get_lang('ExportGlossaryAsCSV'), '', ICON_SIZE_MEDIUM).'</a>'; |
main/survey/survey_list.php 1 location
|
@@ 161-165 (lines=5) @@
|
| 158 |
|
} |
| 159 |
|
|
| 160 |
|
echo '<div class="actions">'; |
| 161 |
|
if (!api_is_session_general_coach() || $extend_rights_for_coachs == 'true') { |
| 162 |
|
// Action links |
| 163 |
|
echo '<a href="'.api_get_path(WEB_CODE_PATH).'survey/create_new_survey.php?'.api_get_cidreq().'&action=add">'. |
| 164 |
|
Display::return_icon('new_survey.png', get_lang('CreateNewSurvey'), '', ICON_SIZE_MEDIUM).'</a> '; |
| 165 |
|
} |
| 166 |
|
echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&search=advanced">'. |
| 167 |
|
Display::return_icon('search.png', get_lang('Search'), '', ICON_SIZE_MEDIUM).'</a>'; |
| 168 |
|
echo '</div>'; |
main/wiki/wiki.inc.php 1 location
|
@@ 1220-1223 (lines=4) @@
|
| 1217 |
|
$notify_page.'</a>'; |
| 1218 |
|
|
| 1219 |
|
// Page action: copy last version to doc area |
| 1220 |
|
if (api_is_allowed_to_edit(false, true) || api_is_platform_admin()) { |
| 1221 |
|
$actionsRight .= '<a href="index.php?'.api_get_cidreq().'&action=export2doc&wiki_id='.$row['id'].'">'. |
| 1222 |
|
Display::return_icon('export_to_documents.png', get_lang('ExportToDocArea'), '', ICON_SIZE_MEDIUM).'</a>'; |
| 1223 |
|
} |
| 1224 |
|
|
| 1225 |
|
$actionsRight .= '<a href="index.php?'.api_get_cidreq().'&action=export_to_pdf&wiki_id='.$row['id'].'">'. |
| 1226 |
|
Display::return_icon('pdf.png', get_lang('ExportToPDF'), '', ICON_SIZE_MEDIUM).'</a>'; |