Skip to content

Commit

Permalink
Move from Dash to Dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsoo committed Nov 15, 2024
1 parent 5e45c71 commit e294975
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Dash\Application\Content_Types;
namespace Yoast\WP\SEO\Dashboard\Application\Content_Types;

use Yoast\WP\SEO\Dash\Application\Taxonomies\Taxonomies_Repository;
use Yoast\WP\SEO\Dash\Domain\Content_Types\Content_Type;
use Yoast\WP\SEO\Dash\Domain\Content_Types\Content_Types_List;
use Yoast\WP\SEO\Dashboard\Application\Taxonomies\Taxonomies_Repository;
use Yoast\WP\SEO\Dashboard\Domain\Content_Types\Content_Type;
use Yoast\WP\SEO\Dashboard\Domain\Content_Types\Content_Types_List;
use Yoast\WP\SEO\Helpers\Post_Type_Helper;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Dash\Application\Filter_Pairs;
namespace Yoast\WP\SEO\Dashboard\Application\Filter_Pairs;

use Yoast\WP\SEO\Dash\Domain\Filter_Pairs\Filter_Pairs_Interface;
use Yoast\WP\SEO\Dash\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dash\Infrastructure\Taxonomies\Taxonomies_Collector;
use Yoast\WP\SEO\Dashboard\Domain\Filter_Pairs\Filter_Pairs_Interface;
use Yoast\WP\SEO\Dashboard\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dashboard\Infrastructure\Taxonomies\Taxonomies_Collector;

/**
* The repository to get hardcoded filter pairs.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Dash\Application\Taxonomies;
namespace Yoast\WP\SEO\Dashboard\Application\Taxonomies;

use Yoast\WP\SEO\Dash\Application\Filter_Pairs\Filter_Pairs_Repository;
use Yoast\WP\SEO\Dash\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dash\Infrastructure\Taxonomies\Taxonomies_Collector;
use Yoast\WP\SEO\Dashboard\Application\Filter_Pairs\Filter_Pairs_Repository;
use Yoast\WP\SEO\Dashboard\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dashboard\Infrastructure\Taxonomies\Taxonomies_Collector;

/**
* The repository to get taxonomies.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dash\Domain\Content_Types;
namespace Yoast\WP\SEO\Dashboard\Domain\Content_Types;

use Yoast\WP\SEO\Dash\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dashboard\Domain\Taxonomies\Taxonomy;

/**
* This class describes a Content Type.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dash\Domain\Content_Types;
namespace Yoast\WP\SEO\Dashboard\Domain\Content_Types;

/**
* This class describes a list of content types.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dash\Domain\Filter_Pairs;
namespace Yoast\WP\SEO\Dashboard\Domain\Filter_Pairs;

/**
* This interface describes a Filter Pair implementation.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dash\Domain\Filter_Pairs;
namespace Yoast\WP\SEO\Dashboard\Domain\Filter_Pairs;

/**
* This class describes the product category filter pair.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dash\Domain\Taxonomies;
namespace Yoast\WP\SEO\Dashboard\Domain\Taxonomies;

/**
* This class describes a Taxonomy.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Dash\Infrastructure\Taxonomies;
namespace Yoast\WP\SEO\Dashboard\Infrastructure\Taxonomies;

use WP_Taxonomy;
use Yoast\WP\SEO\Dash\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dashboard\Domain\Taxonomies\Taxonomy;
/**
* Class that collects taxonomies and relevant information.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Dash\Infrastructure\Taxonomies;
namespace Yoast\WP\SEO\Dashboard\Infrastructure\Taxonomies;

use WP_Taxonomy;
use Yoast\WP\SEO\Dash\Domain\Taxonomies\Taxonomy;
use Yoast\WP\SEO\Dashboard\Domain\Taxonomies\Taxonomy;

/**
* Class that validates taxonomies.
Expand Down
2 changes: 1 addition & 1 deletion src/general/user-interface/general-page-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Yoast\WP\SEO\Actions\Alert_Dismissal_Action;
use Yoast\WP\SEO\Conditionals\Admin\Non_Network_Admin_Conditional;
use Yoast\WP\SEO\Conditionals\Admin_Conditional;
use Yoast\WP\SEO\Dash\Application\Content_Types\Content_Types_Repository;
use Yoast\WP\SEO\Dashboard\Application\Content_Types\Content_Types_Repository;
use Yoast\WP\SEO\Helpers\Current_Page_Helper;
use Yoast\WP\SEO\Helpers\Notification_Helper;
use Yoast\WP\SEO\Helpers\Product_Helper;
Expand Down

0 comments on commit e294975

Please sign in to comment.