summaryrefslogtreecommitdiffstats
path: root/templates/part.content.cronwarning.php
blob: ca3371ddbad1a3c258195fb4c4790c1075cb667c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php if ($_['cronWarning']) { ?>
    <news-instant-notification id="cron-warning">
        <p><?php p($l->t('Ajax or Web cron mode detected! Your feeds will not be updated!')); ?></p>
            <ul>
                <li>
                    <a href="https://doc.owncloud.org/server/9.0/admin_manual/configuration_server/background_jobs_configuration.html#cron"
                       target="_blank">
                    <?php
                        p($l->t('How to set up the operating system cron'));
                    ?>
                    </a>
                </li>
                <li>
                    <a href="https://github.com/owncloud/news-updater"
                       target="_blank">
                        <?php
                            p($l->t('Install and set up a faster parallel updater that uses the News app\'s update API'));
                        ?>
                    </a>
                </li>
            </ul>
        </p>
    </news-instant-notification>
<?php }; ?>