私はLaravelの内部にアプリケーションを構築しています。このプロジェクトの一部は、私の会社のマーケティングチームがWordPressを通じて管理できるようにしたいと考えている正面のウェブサイトです。 WordPressのクラスや機能にアクセスするために、WordPressをLaravelにブートストラップしています。Artisan Cantグローバル名前空間のWP_Queryを参照してください
WordPressはそれらがサービスプロバイダの内部で使用しているとき残念ながら職人がこれらのクラスを参照してくださいカント
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <[email protected]>
*/
/*
|--------------------------------------------------------------------------
| Bootstrap Wordpress Inside Of Laravel
|--------------------------------------------------------------------------
|
| Brings in the wordpress functions for use inside of your laravel classes
| like your controllers and service providers. This makes true coupling
| inside of laravel possible.
|
*/
define('WP_USE_THEMES', false);
require __DIR__.'/hunchentoot/wp-blog-header.php';
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels nice to relax.
|
*/
require __DIR__.'/../bootstrap/autoload.php';
/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
/public/index.php
にブートストラップ。質問 でサービスプロバイダ再び
<?php
namespace App\Providers;
use App\WPQuery\FooterLogosQuery;
use App\Formaters\FooterLogosFormater;
use Illuminate\Support\ServiceProvider;
class FooterLogosProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot(FooterLogosQuery $footerLogosQuery, FooterLogosFormater $footerLogosFormater)
{
$logosQuery = $footerLogosQuery->createQuery();
$queriedLogos = $footerLogosQuery->get_posts();
$logos = $footerLogosFormater->formatFooterLogos($queriedLogos);
view()->share('footerLogos', $logos);
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
//
}
}
私の正気を維持するために、私はLaravelの内部注射用のクラスにWP_Queryクラスを抽象化、下記のサービスプロバイダによって使用されてthatsのものです。プロバイダ
<?php
namespace App\WPQuery;
class FooterLogosQuery extends \WP_Query
{
/**
* Container for the arguements for the query
*
* @var Array
*/
protected $args;
/**
* Container for the query order
*
* @var String
*/
public $order;
/**
* Container for the query post total
*
* @var Integer
*/
public $totalPosts;
/**
* Constructs the object and sets the default args
*
* @return void
*/
public function __construct()
{
$this->order = 'ASC';
$this->totalPosts = 6;
$this->setArgs();
}
/**
* Sets the order for the query if called
*
* @param String $order Container for the query order
*/
public function setOrder($order)
{
$this->order = $order;
$this->setArgs();
}
/**
* Sets the total for the query if called
*
* @param Integer $total Container for the query post total
*/
public function setTotalPosts($total)
{
$this->totalPosts = $total;
$this->setArgs();
}
/**
* (Re)Sets the arguements for the query upon call
*
* @return void
*/
public function setArgs()
{
$this->args = [
'post_type' => 'footer_logos',
'posts_per_page' => $this->totalPosts,
'order' => $this->order,
];
}
/**
* Creates the query for manipulation inside of controller
*
* @return Object This is a WordPress Query Object
*/
public function createQuery()
{
parent::__construct($this->args);
}
/**
* Resets the query once the objects use is complete
*
* @return void
*/
public function __destruct()
{
wp_reset_query();
}
}
これらのそれぞれについて
「クエリ」はまた、それがきれいにコントローラとビューの間を通過することができるように双方向データフォーマッタクラスを有しています。上記のクラスのための
「クエリ」フォーマッタ
<?php
namespace App\Formaters;
class FooterLogosFormater {
/**
* Create a new formater instance.
*
* @return void
*/
public function __construct()
{
}
/**
* Formats the information from the wordpress object
*
* @param Object $queryObject This is the raw Query Object
* @return Array Returns useable data to controller
*/
public function formatFooterLogos($queryObject)
{
$logos = [];
foreach($queryObject as $key => $logo)
{
$logoId = get_post_meta($logo->ID, 'footer_logo', true);
$logos[$key] = [
'logo_link' => get_post_meta($logo->ID, 'footer_logo_link', true),
'logo_image' => wp_get_attachment_url($logoId),
];
}
return $logos;
}
}
私のこのすべては、少なくともアプリケーションのフロントエンドのために、うまく動作します。職人はこれをすべて嫌い、私はそれについて何をすべきか分かりません。職人にグローバルな名前空間を公開するために離れていますか?または私はただSOLですか?
ご協力いただければ幸いです。
おかげで、 ロバート