e107inc/e107

View on GitHub
e107_plugins/gsitemap/e_cron.php

Summary

Maintainability
A
0 mins
Test Coverage
F
4%
<?php
/*
 * e107 website system
 *
 * Copyright (C) 2008-2013 e107 Inc (e107.org)
 * Released under the terms and conditions of the
 * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
 *
 * Plugin configuration module - gsitemap
 *
*/

if (!defined('e107_INIT')) { exit; }

class gsitemap_cron // include plugin-folder in the name.
{
    function config()
    {
        global $pref;
        
        $cron = array();
    
        $cron[] = array(
            'name'            => "Update Records",
            'function'        => "myfunction",
            'category'        => '',
            'description'     => "Dummy example."
        );    
    
        $cron[] = array(
            'name'            => "Test Email",
            'function'        => "sendEmail",
            'category'        => 'mail', // mail, user, content, notify, backup
            'description'     => "Sends a test email to ".$pref['siteadminemail']
        );        
        
        return $cron;
    }
    
    
    function myfunction() 
    {
        // Whatever code you wish.
        e107::getMessage()->add("Executed dummy function within gsitemap/e_cron.php");
    }
    
    
    function sendEmail()
    {

        $adminEmail = e107::getPref('siteadminemail');
        $adminName = e107::getPref('siteadmin');
        
        require_once(e_HANDLER."mail.php");
        
        $message = "Your Cron Job worked correctly. Sent at ".date("r").".";
        sendemail($adminEmail, "e107 - Crong Test Email", $message, $adminName, $adminEmail, $adminName);
    }
}