5

Twitter フィードをビューに返すメソッドを備えた基本コントローラーがあります。

サイト全体に表示されるため、冗長性を減らすために、ビューでこれをページ ビューからデフォルト ブレードに移動したいと考えています。ベース コントローラからブレードにデータを渡すにはどうすればよいですか?

次のように、ページコントローラーからビューに送信できます。

public function get_index()
{
    ..................
    $this->layout->nest('content', 'home.index', array(
        'tweets' => $this->get_tweet()
    ));
}

ビューでは、次のように出力します。

if ($tweets)
{
    foreach ($tweets as $tweet)
    {
        ..............

これをすべて default.blade.php と Base_Contoller 内から実行したい:

<?php
class Base_Controller extends Controller {
    /**
     * Catch-all method for requests that can't be matched.
     *
     * @param  string    $method
     * @param  array     $parameters
     * @return Response
     */
    public function __call($method, $parameters)
    {
        return Response::error('404');
    }

    public function get_tweet()
    {
        ...........
        return $tweets;
    }
}

これはどのように可能ですか?

//////////////////////アップデート/////////////////////////// ///

アプリケーション/モデル/つぶやき.php

<?php
class Tweets {
    public static function get($count = 3)
    {
        Autoloader::map(array(
        'tmhOAuth'     => path('app').
                'libraries/tmhOAuth-master/tmhOAuth.php',
            'tmhUtilities' => path('app').
                'libraries/tmhOAuth-master/tmhUtilities.php'
        ));
        $tmhOAuth = new tmhOAuth(array(
            'consumer_key'        => 'xxx',
            'consumer_secret'     => 'xxx',
            'user_token'          => 'xxxxx',
            'user_secret'         => 'xxxxx',
            'curl_ssl_verifypeer' => false
        ));
        $code = $tmhOAuth->request('GET',
        $tmhOAuth->url('1.1/statuses/user_timeline'), array(
            'screen_name' => 'xxx',
            'count' => $count
        ));
        $response = $tmhOAuth->response['response'];
        $tweets = json_decode($response, true);
        return $tweets;
    }
}

アプリケーション/ビュー/ウィジェット/つぶやき.blade.php

@foreach ($tweets)
    test
@endforeach

アプリケーション/ビュー/レイアウト/default.blade.php

....
{{ $tweets }}
....

アプリケーション/composers.php

<?php
View::composer('widgets.tweets', function($view)
{
    $view->tweets = Tweets::get();
});
View::composer('layouts.default', function($view)
{
    $view->nest('tweets', 'widgets.tweets');
});

アプリケーション/コントローラー/base.php

<?php
class Base_Controller extends Controller {

    /**
     * Catch-all method for requests that can't be matched.
     *
     * @param  string    $method
     * @param  array     $parameters
     * @return Response
     */
    public $layout = 'layouts.default';

    public function __call($method, $parameters)
    {
        return Response::error('404');

    }

}

アプリケーション/コントローラー/home.php

<?php
class Home_Controller extends Base_Controller {

    public $layout = 'layouts.default';

    public $restful = true; 

    public function get_index()
    {
        Asset::add('modernizr', 'js/thirdparty/modernizr.js');
        Asset::add('jquery',
            'http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js');
        Asset::add('scripts', 'js/scripts.js');

        $this->layout->title = 'title';
        $this->layout->nest('content', 'home.index', array(
            //'data' => $some_data
        ));
    }
}

私に与えている

未定義変数: つぶやき

エラー

4

2 に答える 2

12

ステップ 1 - ツイート専用のビューを作成します。これを と呼びましょう。これはデータwidgets/tweets.blade.phpを受け入れます$tweets。これにより、将来、もう少しパフォーマンスが必要な場合に、ツイート ビューを簡単にキャッシュできます。また、ツイート データを生成するモデルも必要です。

ステップ 2 - ツイート データをツイート ビューに渡します。これにはView Composerを使用して、ロジックがビューと共に (ただしビューの外で) 維持されるようにします。

ステップ 3 - デフォルトのレイアウトを作成します。これを と呼びましょうlayout/default.blade.php$contentこれはとを受け入れ$tweetsます。tweets ビューを別のView Composerと入れ子にします。$contentをコントローラー アクションにネストできます。

ステップ 4 - を に設定$layoutしますBase_Controller

ステップ5 - 利益!

注 - これらが最初のビュー コンポーザである場合は、それらをapplication/start.php


// application/models/tweets.php
class Tweets {
    public static function get($count = 5)
    {
        // get your tweets and return them
    }
}

// application/views/widgets/tweets.blade.php
@foreach ($tweets)
    {{-- do something with your tweets --}}
@endforeach

// application/views/layouts/default.blade.php
<section class="main">{{ isset($content) ? $content : '' }}</section>
<aside class="widget widget-tweets">{{ $tweets }}</aside>

// application/composers.php
View::composer('widgets.tweets', function($view)
{
    $view->tweets = Tweets::get();
});
View::composer('layouts.default', function($view)
{
    $view->nest('tweets', 'widgets.tweets');
});

// application/start.php (at the bottom)
include path('app').'composers.php';

// application/controllers/base.php
class Base_Controller extends Controller {
    public $layout = 'layouts.default';
}

// application/controllers/home.php
class Home_Controller extends Base_Controller {

    public $restful = true;

    public function get_index()
    {
        $this->layout->nest('content', 'home.welcome');
    }

}
于 2013-04-16T10:13:30.020 に答える