SproutCMS

This is the code documentation for the SproutCMS project

class LaunchChecks

Copyright (C) 2017 Karmabunny Pty Ltd.

This file is a part of SproutCMS.

SproutCMS is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation, either
version 2 of the License, or (at your option) any later version.

For more information, visit <http://getsproutcms.com>.

This class was originally from Kohana 2.3.4
Copyright 2007-2008 Kohana Team

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-08-16
**/
class NewClassName extends LaunchChecks {
    
    /**
    * Check that the &quot;CLI domain&quot; has been set
    **/
    public function testCliDomain () {
        // Method code goes here
    }
    
    public function testEmail () {
        // Method code goes here
    }
    
    /**
    * Check that each skin has a site title set
    **/
    public function testSkinSiteTitle ($skin_code) {
        // Method code goes here
    }
    
    /**
    * Check that each skin has Google Analytics configured
    **/
    public function testSkinAnalytics ($skin_code) {
        // Method code goes here
    }
    
    /**
    * Check that each skin has Google Analytics configured
    **/
    public function testSkinTemplatesExist ($skin_code) {
        // Method code goes here
    }
    
    public function runTests () {
        // Method code goes here
    }
    
    protected function addResult ($check, $result, $message) {
        // Method code goes here
    }
    
}
?>