Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created September 1, 2015 12:51
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/2e60fe4dbbb6cf43d150 to your computer and use it in GitHub Desktop.
Save kurozumi/2e60fe4dbbb6cf43d150 to your computer and use it in GitHub Desktop.
【EC-CUBE3】新規ページ作成方法。コントローラーの作成
<?php
namespace Plugin\Pages\Controller;
use Eccube\Application;
class PagesController
{
public function sample(Application $app)
{
return "Hello, World!!!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment