table.php
4 years ago
table_map_no_dimension.php
4 years ago
table_no_data.php
6 years ago
table_no_dimension.php
4 years ago
table_no_data.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Matomo - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * @package matomo |
| 8 | */ |
| 9 | |
| 10 | use Piwik\Piwik; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; // if accessed directly |
| 14 | } |
| 15 | ?> |
| 16 | <div class="table"> |
| 17 | <table class="widefat matomo-table"> |
| 18 | <tbody> |
| 19 | <tr> |
| 20 | <td><?php echo esc_html( Piwik::translate( 'CoreHome_ThereIsNoDataForThisReport' ) ); ?></td> |
| 21 | </tr> |
| 22 | </tbody> |
| 23 | </table> |
| 24 | </div> |
| 25 |