├── config ├── tables.yml ├── routing.yml └── services.yml ├── styles └── prosilver │ ├── template │ ├── event │ │ ├── viewtopic_body_poll_before.html │ │ └── navbar_header_profile_list_after.html │ ├── action_bar_top.html │ ├── index_list.html │ ├── index_body.html │ ├── list_body.html │ ├── idea_body.html │ └── ideas.js │ └── theme │ └── ideas.css ├── language └── en │ ├── email │ └── status_notification.txt │ ├── info_acp_ideas.php │ ├── info_ucp_ideas.php │ ├── phpbb_ideas_acp.php │ └── common.php ├── acp ├── ideas_info.php └── ideas_module.php ├── migrations ├── m5_base_url_config.php ├── m8_cron_data.php ├── m12_drop_base_url_config.php ├── m3_acp_data.php ├── m13_set_permissions.php ├── m10_update_idea_schema.php ├── m8_implemented_version.php ├── m4_update_statuses.php ├── m2_initial_data.php ├── m7_drop_old_tables.php ├── m6_migrate_old_tables.php ├── m1_initial_schema.php ├── m11_reparse_old_ideas.php └── m9_remove_idea_bot.php ├── controller ├── livesearch_controller.php ├── post_controller.php ├── index_controller.php ├── list_controller.php ├── base.php ├── admin_controller.php └── idea_controller.php ├── README.md ├── composer.json ├── cron └── prune_orphaned_ideas.php ├── template └── twig │ └── extension │ └── ideas_status_icon.php ├── factory ├── livesearch.php ├── linkhelper.php ├── permission_helper.php ├── base.php ├── ideas.php └── idea.php ├── adm └── style │ └── acp_phpbb_ideas.html ├── ext.php ├── textreparser └── plugins │ └── clean_old_ideas.php ├── notification └── type │ └── status.php ├── event └── listener.php └── license.txt /config/tables.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | tables.ideas_ideas: '%core.table_prefix%ideas_ideas' 3 | tables.ideas_votes: '%core.table_prefix%ideas_votes' 4 | -------------------------------------------------------------------------------- /styles/prosilver/template/event/viewtopic_body_poll_before.html: -------------------------------------------------------------------------------- 1 | {% if IDEA_ID %} 2 | {% INCLUDECSS '@phpbb_ideas/ideas.css' %} 3 | {% include '@phpbb_ideas/idea_body.html' %} 4 | {% endif %} 5 | -------------------------------------------------------------------------------- /language/en/email/status_notification.txt: -------------------------------------------------------------------------------- 1 | Subject: Idea status - "{IDEA_TITLE}" 2 | 3 | Hello {USERNAME}, 4 | 5 | The status of your Idea topic "{IDEA_TITLE}" at "{SITENAME}" has been updated by {UPDATED_BY} to {STATUS}. 6 | 7 | If you want to view the Idea, click the following link: 8 | {U_VIEW_IDEA} 9 | 10 | {EMAIL_SIG} 11 | -------------------------------------------------------------------------------- /styles/prosilver/template/event/navbar_header_profile_list_after.html: -------------------------------------------------------------------------------- 1 | {% if U_SEARCH_MY_IDEAS %} 2 |
{{ lang('ACP_PHPBB_IDEAS_EXPLAIN') }}
8 | 9 | {% if S_ERROR %} 10 |{{ ERROR_MSG }}
13 |46 | {{ lang('TOTAL_POSTED_IDEAS') }} {{ STATISTICS.total }} • {{ lang('LIST_IMPLEMENTED') }} {{ STATISTICS.implemented }} • {{ lang('LIST_IN_PROGRESS') }} {{ STATISTICS.in_progress }} 47 |
48 |