includes/graphs/visits.php

<?php

// Line chart of visits (sessions) over the selected period. Included by api/graphs.php for ?metric=visits.
echo renderLineGraph(
    'visits',
    t('metric.visits'),
    $rangeSql,
    $rangeParams,
    $view,
    $periodTitle,
    $currentSite
);

Contribute