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
));
}
}
私に与えている
未定義変数: つぶやき
エラー