SproutCMS

This is the code documentation for the SproutCMS project

class WorkerLinkChecker

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-04
**/
class NewClassName extends WorkerLinkChecker {
    
    /**
    * Checks a single page
    **/
    private function checkPage ($row, $errs) {
        // Method code goes here
    }
    
    /**
    * Returns TRUE if the given URL is found, a string of the error message if the URL was not found.
    **/
    public function checkUrl ($href, $subsite_id) {
        // Method code goes here
    }
    
    /**
    * Return a CSV for the specified errors
    **/
    private function buildCsv ($errs) {
        // Method code goes here
    }
    
    /**
    * Do stuff
    **/
    public function run ($email_address) {
        // Method code goes here
    }
    
}
?>