Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active April 18, 2016 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/64e0d8cf12a08e44fc25409b9abc3aa9 to your computer and use it in GitHub Desktop.
Save kurozumi/64e0d8cf12a08e44fc25409b9abc3aa9 to your computer and use it in GitHub Desktop.
【EC-CUBE3】プラグインを有効化した時にブロックを生成するプラグインの作り方
<?php
/*
* This file is part of the SampleBlock
*
* Copyright (C) 2016 kurozumi
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\SampleBlock\Controller\Block;
use Eccube\Application;
use Symfony\Component\HttpFoundation\Request;
class SampleBlockController
{
/**
* SampleBlock画面
*
* @param Application $app
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function index(Application $app, Request $request)
{
return $app['view']->render("Block/sample_block.twig", array(
// add parameter...
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment