Skip to content

Commit

Permalink
Merge pull request #1512 from tripal/tv4g0-issue1502-file-extension-i…
Browse files Browse the repository at this point in the history
…nc-to-php

Tripal 4 rename some remaining .inc files to .php - issue1502
  • Loading branch information
laceysanderson committed May 12, 2023
2 parents 324c0bc + 197da6b commit 5f82f08
Show file tree
Hide file tree
Showing 16 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Drupal\tripal_chado\api\DrupalSchemaExtended;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.custom_tables.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/tests/src/Functional/api/ChadoCvAPITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\Core\Test\FunctionalTestSetupTrait;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.cv.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/tests/src/Functional/api/ChadoDbAPITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\tripal_chado\api\ChadoSchema;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.db.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\tripal_chado\api\ChadoSchema;

/**
* Testing the tripal_chado/api/tripal_chado.organism.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.organism.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\tripal_chado\api\ChadoSchema;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.query.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\tripal_chado\api\ChadoSchema;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.variables.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/tests/src/Functional/api/SchemaAPITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Drupal\tripal_chado\api\ChadoSchema;

/**
* Testing the tripal_chado/api/tripal_chado.schema.api.inc functions.
* Testing the tripal_chado/api/tripal_chado.schema.api.php functions.
*
* @group Tripal
* @group Tripal Chado
Expand Down
16 changes: 8 additions & 8 deletions tripal_chado/tripal_chado.module
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Config\FileStorage;

require_once 'src/api/tripal_chado.schema.api.inc';
require_once 'src/api/tripal_chado.custom_tables.api.inc';
require_once 'src/api/tripal_chado.mviews.api.inc';
require_once 'src/api/tripal_chado.query.api.inc';
require_once 'src/api/tripal_chado.variables.api.inc';
require_once 'src/api/tripal_chado.organism.api.inc';
require_once 'src/api/tripal_chado.db.api.inc';
require_once 'src/api/tripal_chado.cv.api.inc';
require_once 'src/api/tripal_chado.schema.api.php';
require_once 'src/api/tripal_chado.custom_tables.api.php';
require_once 'src/api/tripal_chado.mviews.api.php';
require_once 'src/api/tripal_chado.query.api.php';
require_once 'src/api/tripal_chado.variables.api.php';
require_once 'src/api/tripal_chado.organism.api.php';
require_once 'src/api/tripal_chado.db.api.php';
require_once 'src/api/tripal_chado.cv.api.php';
require_once 'src/legacyFunctions.php';

/**
Expand Down

0 comments on commit 5f82f08

Please sign in to comment.