Changeset 9169
- Timestamp:
- 11/23/2014 01:47:32 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-template.php
r9136 r9169 196 196 'page_arg' => 'acpage', 197 197 'max' => false, 198 'count_total' => false, 198 199 'sort' => false, 199 200 'include' => false, … … 227 228 'activity_ids' => explode( ',', $include ), 228 229 'max' => $max, 230 'count_total' => $count_total, 229 231 'page' => $this->pag_page, 230 232 'per_page' => $this->pag_num, … … 241 243 'display_comments' => $display_comments, 242 244 'max' => $max, 245 'count_total' => $count_total, 243 246 'per_page' => $this->pag_num, 244 247 'page' => $this->pag_page, … … 448 451 * @type int|bool $max Maximum number of results to return. 449 452 * Default: false (unlimited). 453 * @type string|bool $count_total If true, an additional DB query is run to 454 * count the total activity items for the query. Default: false. 450 455 * @type string $sort 'ASC' or 'DESC'. Default: 'DESC'. 451 456 * @type array|bool $exclude Array of activity IDs to exclude. Default: false. … … 587 592 'per_page' => 20, // number of items per page 588 593 'max' => false, // max number to return 594 'count_total' => false, 589 595 'show_hidden' => $show_hidden, // Show activity items that are hidden site-wide? 590 596 'spam' => 'ham_only', // Hide spammed items … … 720 726 'page_arg' => $page_arg, 721 727 'max' => $max, 728 'count_total' => $count_total, 722 729 'sort' => $sort, 723 730 'include' => $include,
Note: See TracChangeset
for help on using the changeset viewer.