8989 *
9090 * ### Applying Filters
9191 *
92- * Filters can be applied now (via [ filter](#filter) ), or they can be applied later (via
93- * [ queueFilter](#queueFilter) ).
92+ * Filters can be applied now (via {@link filter()} ), or they can be applied later (via
93+ * {@link queueFilter()} ).
9494 *
9595 * Filters that sort rows or manipulate the number of rows should be applied right away.
9696 * Non-essential, presentation filters should be queued.
9797 *
9898 * ### Learn more
9999 *
100- * - **[ ArchiveProcessor](#) ** — to learn how DataTables are persisted.
101- * - **[ DataTable\Renderer](#) ** — to learn how DataTable data is exported to XML, JSON, etc.
102- * - **[ DataTable\Filter](#) ** — to see all core Filters.
100+ * - **{@link ArchiveProcessor} ** — to learn how DataTables are persisted.
101+ * - **{@link DataTable\Renderer} ** — to learn how DataTable data is exported to XML, JSON, etc.
102+ * - **{@link DataTable\Filter} ** — to see all core Filters.
103103 *
104104 * ### Examples
105105 *
@@ -182,8 +182,8 @@ class DataTable implements DataTableInterface
182182 const TOTAL_ROWS_BEFORE_LIMIT_METADATA_NAME = 'total_rows_before_limit ' ;
183183
184184 /**
185- * Name for metadata that describes how individual columns should be aggregated when [ addDataTable](#addDataTable)
186- * or [ DataTable\Row::sumRow](#) is called.
185+ * Name for metadata that describes how individual columns should be aggregated when {@link addDataTable()}
186+ * or {@link Piwik\ DataTable\Row::sumRow()} is called.
187187 *
188188 * This metadata value must be an array that maps column names with valid operations. Valid aggregation operations are:
189189 *
@@ -192,7 +192,7 @@ class DataTable implements DataTableInterface
192192 * - `'min'`: does `min($column1, $column2)`
193193 * - `'sum'`: does `$column1 + $column2`
194194 *
195- * See [ addDataTable](#addDataTable) and [ DataTable\Row::sumRow](#) for more information.
195+ * See {@link addDataTable()} and {@link DataTable\Row::sumRow()} for more information.
196196 */
197197 const COLUMN_AGGREGATION_OPS_METADATA_NAME = 'column_aggregation_ops ' ;
198198
@@ -1055,7 +1055,7 @@ public static function isEqual(DataTable $table1, DataTable $table2)
10551055 * cases where DataTables can become quite large, they should be truncated before being persisted
10561056 * in an archive.
10571057 *
1058- * The result of this method is intended for use with the [ ArchiveProcessor::insertBlobRecord](#) method.
1058+ * The result of this method is intended for use with the {@link ArchiveProcessor::insertBlobRecord()} method.
10591059 *
10601060 * @throws Exception If infinite recursion detected. This will occur if a table's subtable is one of its parent tables.
10611061 * @param int $maximumRowsInDataTable If not null, defines the maximum number of rows allowed in the serialized DataTable.
0 commit comments