aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | [feature/soft-delete] Add unit tests for get_forums_visibility_sql()Joas Schilling2012-10-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9657
* | | | | | [feature/soft-delete] Fix some more usages of _approved column namesJoas Schilling2012-08-301-20/+10
|/ / / / / | | | | | | | | | | | | | | | PHPBB3-9657
* | | | | Merge remote-tracking branch 'Fyorl/feature/attach-dl' into developAndreas Fischer2012-08-261-0/+35
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fyorl/feature/attach-dl: (75 commits) [feature/attach-dl] Removed the use of some abbreviations [feature/attach-dl] Changed $files_added checks [feature/attach-dl] Renamed $post_id to $post_msg_id [feature/attach-dl] Fixed a comment [feature/attach-dl] Optimised an sql query [feature/attach-dl] Fixed the logic in an sql statement [feature/attch-dl] $forum_id cast to int [feature/attach-dl] Fixed $file_added to $files_added [feature/attach-dl] Moved definition of $archive_name [feature/attach-dl] Swapped the order of an if statement [feature/attach-dl] Cast variables to int [feature/attach-dl] Added $archive_path [feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma [feature/attach-dl] Renamed $count to $files_added [feature/attach-dl] Removed sprintf() use [feature/attach-dl] Removed need for array_keys() [feature/attach-dl] Added multiple attachment downloads to PMs [feature/attach-dl] Removed reliance on current($row) [feature/attach-dl] Renamed to phpbb_download_handle_forum_auth [feature/attach-dl] Moved PM authentication handling into own function ...
| * | | | | [feature/attach-dl] Moved include of compress class inside functionFyorl2012-08-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Prefixed gen_download_links with phpbb_Fyorl2012-08-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11042
| * | | | | [feature/attach-dl] Downloading all attachments fully implementedFyorl2012-08-041-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a function to list all available archiving methods and integrated it with the prosilver style. Heavy modifications to download/file.php to support archiving and downloading of multiple files at once. PHPBB3-11042
* | | | | | Merge remote-tracking branch 'nickvergessen/feature/php-events-4' into developDavid King2012-08-201-6/+108
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | [feature/php-events] Allow core.user_get_avatar to overwrite all avatarsJoas Schilling2012-08-011-9/+25
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix docs of core.display_custom_bbcodesJoas Schilling2012-08-011-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix docs and naming of display_custom_bbcodes_modify_rowJoas Schilling2012-08-011-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix docs and naming of display_forums_modify_template_varsJoas Schilling2012-08-011-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Move core.display_forums_modify_forum_rows to better pointJoas Schilling2012-08-011-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix docs of core.display_forums_modify_rowJoas Schilling2012-08-011-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Fix docs and naming of core.display_forums_modify_sqlJoas Schilling2012-08-011-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Make handling of forumrow consistent with othersJoas Schilling2012-08-011-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Properly name user_default_avatar and add additional varsJoas Schilling2012-08-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/php-events] Rename display_forums_sql_inject to be less misleadingJoas Schilling2012-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Renamed $empty_avatar to $default_avatarDavid King2012-08-011-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Added core.user_default_avatar eventDavid King2012-08-011-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This way, extension authors can overwrite the empty value returned when a user does not have an avatar with a default value to display instead of nothing in the avatar space. PHPBB3-9550
| * | | | | [feature/events] Removing the third trigger_event parameterMichael Cullum2012-08-011-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Change to use the new method of adding eventsMichael Cullum2012-08-011-15/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Adding ledge display_custom_bbcodesJoas Schilling2012-08-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Adding ledge display_custom_bbcodes_rowJoas Schilling2012-08-011-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used by phpBB Gallery PHPBB3-9550
| * | | | | [feature/events] Replace run_hooks calls with event dispatcher.Oleg Pudeyev2012-08-011-8/+19
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9550
| * | | | | [feature/events] Started on hooks for advanced last topic titles mod.Oleg Pudeyev2012-08-011-0/+9
| | |_|_|/ | |/| | | | | | | | | | | | | PHPBB3-9550
* | | | | [ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriateNathan2012-07-221-2/+2
|/ / / / | | | | | | | | | | | | PHPBB3-10990
* | | | [feature/pagination-as-list] Updates for nils commentsDrae2012-07-181-43/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-remove deprecated functions, change on_page to phpbb_on_page, add null returns, remove globals and pass as params. PHPBB3-10968
* | | | [feature/pagination-as-list] Rename and deprecate functionsDrae2012-07-181-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Returned and marked deprecated topic_generate_pagination. Rename new function in line with coding guidelines. PHPBB3-10968
* | | | [ticket/10968] Render pagination within the templateDrae2012-07-181-42/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since phpBB 2 pagination has been rendered mostly within the source. This limits just what designers can do with pagination. The current form is also questionable in terms of "best practice". The aim is to move rendering completely to the template via the use of a block element. Enabling S_ template vars also allows for control over specific aspects of the pagination output such as next, previous, active and ellipsis. Related to this - merging the capabilities of the topic_generate_pagination with generate_pagination removes an element of duplication. PHPBB3-10968
* | | | Merge PR #759 branch 'nickvergessen/ticket/10811' into developOleg Pudeyev2012-07-051-0/+2
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | * nickvergessen/ticket/10811: [ticket/10811] Make toogle_subscribe more generic so it can toogle all links [ticket/10811] Make it easier for MODs/Extensions to define the alt-text [ticket/10811] Make subscribe/unsubscribe repeatable with AJAX [ticket/10811] Fix AJAX callback alt_text so it can be repeated.
| * | | [ticket/10811] Make toogle_subscribe more generic so it can toogle all linksJoas Schilling2012-07-051-1/+2
| | | | | | | | | | | | | | | | PHPBB3-10811
| * | | [ticket/10811] Make it easier for MODs/Extensions to define the alt-textJoas Schilling2012-05-161-0/+1
| | | | | | | | | | | | | | | | PHPBB3-10811
* | | | [ticket/10912] Default last post subject to empty lacking last post infoDavid King2012-05-261-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10912
* | | | [ticket/10650] Subject is cleared if no permissions existRahul R2012-05-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The subject line will be cleared before passing to the template in case the user doesn't have sufficient permissions. PHPBB3-10650
* | | | [ticket/10650] Moving censoring to before truncationRahul R2012-04-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The censor_text function is now being applied to the last_post_subject before being truncated. PHPBB3-10650
* | | | [ticket/10650] Added ellipsis to language fileRahul R2012-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Added ELLIPSIS to language file common.php and also corrected language explanation of ACP option. PHPBB3-10650
* | | | [ticket/10650] Made use of truncate_string() functionRahul R2012-04-081-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed manual cropping and used truncate_string function. Also made a new variable so that is preserved. PHPBB3-10650
* | | | [ticket/10650] Changed acp option from per forum to globalRahul R2012-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the display last subject acp toggle option from per forum to global. Modified associated database entries. New option is available in ACP General->Board Features. Also corrected <br /> in forumlist_body.html. PHPBB3-10650
* | | | [ticket/10650] Added checking for empty subjectsRahul R2012-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Now empty subjects will not be displayed in a new line on the forum list. PHPBB3-10650
* | | | [ticket/10650] Corrected intendationRahul R2012-04-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Corrected the intendation of if condition. PHPBB3-10650
* | | | [ticket/10650]Added permission checking and utf8 functionsRahul R2012-04-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passworded forums and ones in which user doesn't have read access will be excluded. Also uft8 based string functions and html encode/decode functions have been used to sanitise subject. PHPBB3-10650
* | | | [ticket/10650] Cropped subject and inserted newlineRahul R2012-04-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The subject being displayed in the forum list have been shortened to 30 characters. Also it is now being shown in a separate line. PHPBB3-10650
* | | | [ticket/10650] Displaying last topic on forum listRahul2012-04-081-0/+1
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | The most recent topic title of the forum can now be displayed on the board index. An option is provided in the ACP under the 'General Forum Setting' which allows the admin to enable or disable this feature. PHPBB3-10650
* | | [ticket/10650] Revert merge of 'rahulr92/ticket/10650' into developOleg Pudeyev2012-04-041-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pull request (#654) was merged a little too quickly. In particular, display_last_subject per-forum option needs consensus. This reverts commit b1fb34a4d7e446768b9f66ba6dd359173cd2a5fb, reversing changes made to 7d6b289671c51694f17dd5f9849abf2534b55e59. PHPBB3-10650
* | | [ticket/10650] Added checking for empty subjectsRahul R2012-04-051-1/+1
| | | | | | | | | | | | | | | | | | | | | Now empty subjects will not be displayed in a new line on the forum list. PHPBB3-10650
* | | [ticket/10650] Corrected intendationRahul R2012-04-051-4/+4
| | | | | | | | | | | | | | | | | | Corrected the intendation of if condition. PHPBB3-10650
* | | [ticket/10650]Added permission checking and utf8 functionsRahul R2012-04-051-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Passworded forums and ones in which user doesn't have read access will be excluded. Also uft8 based string functions and html encode/decode functions have been used to sanitise subject. PHPBB3-10650
* | | [ticket/10650] Cropped subject and inserted newlineRahul R2012-04-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | The subject being displayed in the forum list have been shortened to 30 characters. Also it is now being shown in a separate line. PHPBB3-10650
* | | [ticket/10650] Displaying last topic on forum listRahul2012-04-051-0/+1
|/ / | | | | | | | | | | | | | | | | The most recent topic title of the forum can now be displayed on the board index. An option is provided in the ACP under the 'General Forum Setting' which allows the admin to enable or disable this feature. PHPBB3-10650
* | [feature/ajax] Add entirely unrelated but nice newlinesIgor Wiedler2012-03-311-0/+1
|/ | | | PHPBB3-10270