Changeset 3235537
- Timestamp:
- 02/05/2025 04:01:27 PM (14 months ago)
- Location:
- solea
- Files:
-
- 4 added
- 12 edited
- 1 copied
-
tags/5.3 (copied) (copied from solea/trunk)
-
tags/5.3/app/controllers/eventparticipations/class-createprintablelist.php (modified) (2 diffs)
-
tags/5.3/app/pdflists/class-participantksvcsvlist.php (added)
-
tags/5.3/app/requests/class-getlocalgroupcity.php (added)
-
tags/5.3/app/views/participants/overview.php (modified) (1 diff)
-
tags/5.3/languages/solea-de_DE.mo (modified) (previous)
-
tags/5.3/languages/solea-de_DE.po (modified) (1 diff)
-
tags/5.3/readme.txt (modified) (1 diff)
-
tags/5.3/solea.php (modified) (1 diff)
-
trunk/app/controllers/eventparticipations/class-createprintablelist.php (modified) (2 diffs)
-
trunk/app/pdflists/class-participantksvcsvlist.php (added)
-
trunk/app/requests/class-getlocalgroupcity.php (added)
-
trunk/app/views/participants/overview.php (modified) (1 diff)
-
trunk/languages/solea-de_DE.mo (modified) (previous)
-
trunk/languages/solea-de_DE.po (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/solea.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solea/tags/5.3/app/controllers/eventparticipations/class-createprintablelist.php
r3183195 r3235537 24 24 use Solea\PdfLists\KitchenOverview; 25 25 use Solea\PdfLists\ParticipantCSVList; 26 use Solea\PdfLists\ParticipantKSVCSVList; 26 27 use Solea\PdfLists\ParticipantList; 27 28 use Solea\PdfLists\PhotoPermission; … … 92 93 break; 93 94 95 case 'participant-csvlist-ksv': 96 new ParticipantKSVCSVList( $event ); 97 break; 98 94 99 case 'awarenesschecklist': 95 100 new AwarenessCheckList( $event ); -
solea/tags/5.3/app/views/participants/overview.php
r3209737 r3235537 53 53 <a href="#" onclick="solea_print_list('participantlist', <?php echo esc_html( $event->id ); ?>);" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Participant list', 'solea' ); ?> (PDF)</a> 54 54 <a href="#" onclick="solea_print_list('participant-csvlist', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Participant list', 'solea' ); ?> (CSV)</a> 55 <a href="#" onclick="solea_print_list('participant-csvlist-ksv', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Funding list - KSV', 'solea' ); ?> (CSV))</a> 55 56 <a href="#" onclick="solea_print_list('kitchenoverview', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Kitchen overview', 'solea' ); ?> (PDF)</a> 56 57 <a href="#" onclick="solea_print_list('kitchenallergies', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Kitchen list with allergies', 'solea' ); ?> (PDF)</a> -
solea/tags/5.3/languages/solea-de_DE.po
r3221661 r3235537 1723 1723 msgid "The participation fees are updated" 1724 1724 msgstr "Die Teilnahmegebühren wurden angepasst" 1725 1726 msgid "City (private)" 1727 msgstr "Wohnort (Privat)" 1728 1729 msgid "Zip code (private)" 1730 msgstr "Postleizhal (Privat)" 1731 1732 msgid "City (local group)" 1733 msgstr "Wohnort (Stamm)" 1734 1735 msgid "Funding list - KSV" 1736 msgstr "KSV-Förderliste" -
solea/tags/5.3/readme.txt
r3226265 r3235537 39 39 40 40 ## Changelog ## 41 = 5.3 = 42 * [IMP] Added CSV output for special funding list 43 41 44 = 5.2 = 42 45 * [BUG] Fixed bug closing events on reaching registration_end -
solea/tags/5.3/solea.php
r3226265 r3235537 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 25 * Version: 5.3 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0 -
solea/trunk/app/controllers/eventparticipations/class-createprintablelist.php
r3183195 r3235537 24 24 use Solea\PdfLists\KitchenOverview; 25 25 use Solea\PdfLists\ParticipantCSVList; 26 use Solea\PdfLists\ParticipantKSVCSVList; 26 27 use Solea\PdfLists\ParticipantList; 27 28 use Solea\PdfLists\PhotoPermission; … … 92 93 break; 93 94 95 case 'participant-csvlist-ksv': 96 new ParticipantKSVCSVList( $event ); 97 break; 98 94 99 case 'awarenesschecklist': 95 100 new AwarenessCheckList( $event ); -
solea/trunk/app/views/participants/overview.php
r3209737 r3235537 53 53 <a href="#" onclick="solea_print_list('participantlist', <?php echo esc_html( $event->id ); ?>);" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Participant list', 'solea' ); ?> (PDF)</a> 54 54 <a href="#" onclick="solea_print_list('participant-csvlist', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Participant list', 'solea' ); ?> (CSV)</a> 55 <a href="#" onclick="solea_print_list('participant-csvlist-ksv', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Funding list - KSV', 'solea' ); ?> (CSV))</a> 55 56 <a href="#" onclick="solea_print_list('kitchenoverview', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Kitchen overview', 'solea' ); ?> (PDF)</a> 56 57 <a href="#" onclick="solea_print_list('kitchenallergies', <?php echo esc_html( $event->id ); ?>)" class="button solea-button solea-event-action-button"><?php echo esc_html__( 'Kitchen list with allergies', 'solea' ); ?> (PDF)</a> -
solea/trunk/languages/solea-de_DE.po
r3221661 r3235537 1723 1723 msgid "The participation fees are updated" 1724 1724 msgstr "Die Teilnahmegebühren wurden angepasst" 1725 1726 msgid "City (private)" 1727 msgstr "Wohnort (Privat)" 1728 1729 msgid "Zip code (private)" 1730 msgstr "Postleizhal (Privat)" 1731 1732 msgid "City (local group)" 1733 msgstr "Wohnort (Stamm)" 1734 1735 msgid "Funding list - KSV" 1736 msgstr "KSV-Förderliste" -
solea/trunk/readme.txt
r3226265 r3235537 39 39 40 40 ## Changelog ## 41 = 5.3 = 42 * [IMP] Added CSV output for special funding list 43 41 44 = 5.2 = 42 45 * [BUG] Fixed bug closing events on reaching registration_end -
solea/trunk/solea.php
r3226265 r3235537 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 25 * Version: 5.3 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0
Note: See TracChangeset
for help on using the changeset viewer.