partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

PrerequisitesTestCard.js (885B)


      1 /**
      2  * This card runs the prequisites test to make sure basic things like PHP and Doctrine are installed and configured.
      3  */
      4 Ext.define('PartKeeprSetup.PrerequisitesTestCard', {
      5     extend: 'PartKeeprSetup.AbstractTestCard',
      6 
      7     cardMessage: "Setup now checks if your server is capable of running PartKeepr.",
      8     breadCrumbTitle: 'Prerequisites',
      9     /**
     10      * Sets up all tests
     11      */
     12     setupTests: function ()
     13     {
     14         this.tests.push(new PartKeeprSetup.PHPTest());
     15         this.tests.push(new PartKeeprSetup.PHPPrerequisitesTest());
     16         this.tests.push(new PartKeeprSetup.PHPSettingsTest());
     17         this.tests.push(new PartKeeprSetup.WebserverTest());
     18         this.tests.push(new PartKeeprSetup.WebserverRewriteTest());
     19         this.tests.push(new PartKeeprSetup.WebserverLogDirectoryTest());
     20         this.tests.push(new PartKeeprSetup.GenerateAuthKey());
     21     }
     22 });