public function index(Application $app, Request $request, $id = null) { $Mail = null; if ($id) { $Mail = $app['orm.em']->getRepository('\\Eccube\\Entity\\MailTemplate')->find($id); if (is_null($Mail)) { throw new NotFoundHttpException(); } } $builder = $app['form.factory']->createBuilder('mail', $Mail); $event = new EventArgs(array('builder' => $builder, 'Mail' => $Mail), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_MAIL_INDEX_INITIALIZE, $event); $form = $builder->getForm(); $form['template']->setData($Mail); if ('POST' === $request->getMethod()) { $form->handleRequest($request); // 新規登録は現時点では未実装とする. if (is_null($Mail)) { $app->addError('admin.shop.mail.save.error', 'admin'); return $app->redirect($app->url('admin_setting_shop_mail')); } if ($form->isValid()) { $app['orm.em']->flush(); $event = new EventArgs(array('form' => $form, 'Mail' => $Mail), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_MAIL_INDEX_COMPLETE, $event); $app->addSuccess('admin.shop.mail.save.complete', 'admin'); return $app->redirect($app->url('admin_setting_shop_mail_edit', array('id' => $id))); } } return $app->render('Setting/Shop/mail.twig', array('form' => $form->createView(), 'id' => $id)); }
/** * edit * * @param Application $app * @request Symfony\Component\HttpFoundation\Request $app * @return mixed */ public function edit(Application $app, Request $request, $id = null) { $Customer = $app['user']; $CustomerAddress = $app['eccube.repository.customer_address']->findOrCreateByCustomerAndId($Customer, $id); $parentPage = $request->get('parent_page', null); // 正しい遷移かをチェック $allowdParents = array($app->url('mypage_delivery'), $app->url('shopping_delivery')); // 遷移が正しくない場合、デフォルトであるマイページの配送先追加の画面を設定する if (!in_array($parentPage, $allowdParents)) { $parentPage = $app->url('mypage_delivery'); } /* @var $form \Symfony\Component\Form\FormInterface */ $form = $app['form.factory']->createBuilder('customer_address', $CustomerAddress)->getForm(); if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { $app['orm.em']->persist($CustomerAddress); $app['orm.em']->flush(); $app->addSuccess('mypage.delivery.add.complete'); return $app->redirect($app->url('mypage_delivery')); } } $BaseInfo = $app['eccube.repository.base_info']->get(); return $app->render('Mypage/delivery_edit.twig', array('form' => $form->createView(), 'parentPage' => $parentPage, 'BaseInfo' => $BaseInfo)); }
/** * edit * * @param Application $app * @request Symfony\Component\HttpFoundation\Request $app * @return mixed */ public function edit(Application $app, Request $request, $id = null) { $Customer = $app['user']; // 配送先住所最大値判定 // $idが存在する際は、追加処理ではなく、編集の処理ため本ロジックスキップ if (is_null($id)) { $addressCurrNum = count($Customer->getCustomerAddresses()); $addressMax = $app['config']['deliv_addr_max']; if ($addressCurrNum >= $addressMax) { throw new NotFoundHttpException(); } } $CustomerAddress = $app['eccube.repository.customer_address']->findOrCreateByCustomerAndId($Customer, $id); $parentPage = $request->get('parent_page', null); // 正しい遷移かをチェック $allowdParents = array($app->url('mypage_delivery'), $app->url('shopping_delivery')); // 遷移が正しくない場合、デフォルトであるマイページの配送先追加の画面を設定する if (!in_array($parentPage, $allowdParents)) { $parentPage = $app->url('mypage_delivery'); } /* @var $form \Symfony\Component\Form\FormInterface */ $form = $app['form.factory']->createBuilder('customer_address', $CustomerAddress)->getForm(); if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { $app['orm.em']->persist($CustomerAddress); $app['orm.em']->flush(); $app->addSuccess('mypage.delivery.add.complete'); return $app->redirect($app->url('mypage_delivery')); } } $BaseInfo = $app['eccube.repository.base_info']->get(); return $app->render('Mypage/delivery_edit.twig', array('form' => $form->createView(), 'parentPage' => $parentPage, 'BaseInfo' => $BaseInfo)); }
public function index(Application $app, Request $request, $parent_id = null, $id = null) { if ($parent_id) { $Parent = $app['eccube.repository.category']->find($parent_id); if (!$Parent) { throw new NotFoundHttpException('親カテゴリが存在しません'); } } else { $Parent = null; } if ($id) { $TargetCategory = $app['eccube.repository.category']->find($id); if (!$TargetCategory) { throw new NotFoundHttpException('カテゴリが存在しません'); } $Parent = $TargetCategory->getParent(); } else { $TargetCategory = new \Eccube\Entity\Category(); $TargetCategory->setParent($Parent); if ($Parent) { $TargetCategory->setLevel($Parent->getLevel() + 1); } else { $TargetCategory->setLevel(1); } } // $builder = $app['form.factory']->createBuilder('admin_category', $TargetCategory); $event = new EventArgs(array('builder' => $builder, 'Parent' => $Parent, 'TargetCategory' => $TargetCategory), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_PRODUCT_CATEGORY_INDEX_INITIALIZE, $event); $form = $builder->getForm(); // if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { if ($app['config']['category_nest_level'] < $TargetCategory->getLevel()) { throw new BadRequestHttpException('リクエストが不正です'); } log_info('カテゴリ登録開始', array($id)); $status = $app['eccube.repository.category']->save($TargetCategory); if ($status) { log_info('カテゴリ登録完了', array($id)); $event = new EventArgs(array('form' => $form, 'Parent' => $Parent, 'TargetCategory' => $TargetCategory), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_PRODUCT_CATEGORY_INDEX_COMPLETE, $event); $app->addSuccess('admin.category.save.complete', 'admin'); if ($Parent) { return $app->redirect($app->url('admin_product_category_show', array('parent_id' => $Parent->getId()))); } else { return $app->redirect($app->url('admin_product_category')); } } else { log_info('カテゴリ登録エラー', array($id)); $app->addError('admin.category.save.error', 'admin'); } } } $Categories = $app['eccube.repository.category']->getList($Parent); // ツリー表示のため、ルートからのカテゴリを取得 $TopCategories = $app['eccube.repository.category']->getList(null); return $app->render('Product/category.twig', array('form' => $form->createView(), 'Parent' => $Parent, 'Categories' => $Categories, 'TopCategories' => $TopCategories, 'TargetCategory' => $TargetCategory)); }
public function index(Application $app, Request $request, $id = null) { $Mail = null; if ($id) { $Mail = $app['orm.em']->getRepository('\\Eccube\\Entity\\MailTemplate')->find($id); if (is_null($Mail)) { throw new NotFoundHttpException(); } } $form = $app['form.factory']->createBuilder('mail', $Mail)->getForm(); $form['template']->setData($Mail); if ('POST' === $request->getMethod()) { $form->handleRequest($request); // 新規登録は現時点では未実装とする. if (is_null($Mail)) { $app->addError('admin.shop.mail.save.error', 'admin'); return $app->redirect($app->url('admin_setting_shop_mail')); } if ($form->isValid()) { $app['orm.em']->flush(); $app->addSuccess('admin.shop.mail.save.complete', 'admin'); return $app->redirect($app->url('admin_setting_shop_mail_edit', array('id' => $id))); } } return $app->render('Setting/Shop/mail.twig', array('form' => $form->createView(), 'id' => $id)); }
public function index(Application $app, Request $request, $parent_id = null, $id = null) { if ($parent_id) { $Parent = $app['eccube.repository.category']->find($parent_id); if (!$Parent) { throw new NotFoundHttpException(); } } else { $Parent = null; } if ($id) { $TargetCategory = $app['eccube.repository.category']->find($id); if (!$TargetCategory) { throw new NotFoundHttpException(); } $Parent = $TargetCategory->getParent(); } else { $TargetCategory = new \Eccube\Entity\Category(); $TargetCategory->setParent($Parent); if ($Parent) { $TargetCategory->setLevel($Parent->getLevel() + 1); } else { $TargetCategory->setLevel(1); } } // $form = $app['form.factory']->createBuilder('admin_category', $TargetCategory)->getForm(); // if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { if ($app['config']['category_nest_level'] < $TargetCategory->getLevel()) { throw new BadRequestHttpException(); } $status = $app['eccube.repository.category']->save($TargetCategory); if ($status) { $app->addSuccess('admin.category.save.complete', 'admin'); if ($Parent) { return $app->redirect($app->url('admin_product_category_show', array('parent_id' => $Parent->getId()))); } else { return $app->redirect($app->url('admin_product_category')); } } else { $app->addError('admin.category.save.error', 'admin'); } } } $Children = $app['eccube.repository.category']->getList(null); $Categories = $app['eccube.repository.category']->getList($Parent); $TopCategories = $app['eccube.repository.category']->findBy(array('Parent' => null), array('rank' => 'DESC')); $category_count = $app['eccube.repository.category']->getTotalCount(); return $app->render('Product/category.twig', array('form' => $form->createView(), 'Children' => $Children, 'Parent' => $Parent, 'Categories' => $Categories, 'TopCategories' => $TopCategories, 'TargetCategory' => $TargetCategory, 'category_count' => $category_count)); }
/** * AdContents constructor. * @param Application $app * @param Product $product */ public function __construct(Application $app, Product $product) { $shop_name = $app['eccube.repository.base_info']->get()->getShopName(); $homepage_url = $app->url('homepage'); $product_url = $app->url('product_detail', array('id' => $product->getId())); $this->headline = CsvContentsUtil::clipText($product->getName(), 15); $this->description1 = CsvContentsUtil::clipText($product->getDescriptionDetail(), 19); $this->description2 = CsvContentsUtil::clipText($shop_name, 19); $this->display_url = CsvContentsUtil::removeHttpText(CsvContentsUtil::clipText($homepage_url, 29)); $this->link_url = CsvContentsUtil::clipText($product_url, 1024); $now = new \DateTime(); $ad_name = $now->format('Ymd') . '_' . str_pad($product->getId(), 4, 0, STR_PAD_LEFT); $this->ad_inner_name = CsvContentsUtil::clipText($ad_name, 50); }
/** * お問い合わせ画面. * * @param Application $app * @param Request $request * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response */ public function index(Application $app, Request $request) { $builder = $app['form.factory']->createBuilder('contact'); if ($app->isGranted('ROLE_USER')) { $user = $app['user']; $builder->setData(array('name01' => $user->getName01(), 'name02' => $user->getName02(), 'kana01' => $user->getKana01(), 'kana02' => $user->getKana02(), 'zip01' => $user->getZip01(), 'zip02' => $user->getZip02(), 'pref' => $user->getPref(), 'addr01' => $user->getAddr01(), 'addr02' => $user->getAddr02(), 'tel01' => $user->getTel01(), 'tel02' => $user->getTel02(), 'tel03' => $user->getTel03(), 'email' => $user->getEmail())); } // FRONT_CONTACT_INDEX_INITIALIZE $event = new EventArgs(array('builder' => $builder), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_CONTACT_INDEX_INITIALIZE, $event); $form = $builder->getForm(); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { switch ($request->get('mode')) { case 'confirm': $builder->setAttribute('freeze', true); $form = $builder->getForm(); $form->handleRequest($request); $title = 'お問い合わせ(確認ページ)'; return $app->render('Contact/confirm.twig', array('form' => $form->createView(), 'title' => $title)); case 'complete': $data = $form->getData(); $event = new EventArgs(array('form' => $form, 'data' => $data), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_CONTACT_INDEX_COMPLETE, $event); $data = $event->getArgument('data'); // メール送信 $app['eccube.service.mail']->sendContactMail($data); return $app->redirect($app->url('contact_complete')); } } return $app->render('Contact/index.twig', array('form' => $form->createView())); }
/** * 納品書の設定画面表示. * * @param Application $app * @param Request $request * * @return \Symfony\Component\HttpFoundation\RedirectResponse|Response * * @throws NotFoundHttpException */ public function index(Application $app, Request $request) { // requestから受注番号IDの一覧を取得する. $ids = $this->getIds($request); if (count($ids) == 0) { $app->addError('admin.plugin.order_pdf.parameter.notfound', 'admin'); log_info('The Order cannot found!'); return $app->redirect($app->url('admin_order')); } /* @var OrderPdfRepository $repos */ $repos = $app['orderpdf.repository.order_pdf']; $OrderPdf = $repos->find($app->user()); if (EntityUtil::isEmpty($OrderPdf)) { $OrderPdf = new OrderPdf(); $OrderPdf->setTitle($app->trans('admin.plugin.order_pdf.title.default'))->setMessage1($app->trans('admin.plugin.order_pdf.message1.default'))->setMessage2($app->trans('admin.plugin.order_pdf.message2.default'))->setMessage3($app->trans('admin.plugin.order_pdf.message3.default')); } /** * @var FormBuilder $builder */ $builder = $app['form.factory']->createBuilder('admin_order_pdf', $OrderPdf); /* @var Form $form */ $form = $builder->getForm(); // Formへの設定 $form->get('ids')->setData(implode(',', $ids)); return $app->render('OrderPdf/Resource/template/admin/order_pdf.twig', array('form' => $form->createView())); }
public function index(Application $app, Request $request, $id) { $repos = $app['eccube.plugin.holiday.repository.holidayweek']; $TargetHolidayWeek = new \Plugin\Holiday\Entity\HolidayWeek(); if ($id) { $TargetHolidayWeek = $repos->find($id); if (!$TargetHolidayWeek) { throw new NotFoundHttpException(); } $TargetHolidayWeek->week = unserialize($TargetHolidayWeek->week); } $form = $app['form.factory']->createBuilder('admin_holiday_week', $TargetHolidayWeek)->getForm(); if ('POST' === $request->getMethod()) { $form->handleRequest($request); if ($form->isValid()) { // 取得した曜日選択情報をシリアライズ $TargetHolidayWeek->week = serialize($TargetHolidayWeek->week); $status = $repos->save($TargetHolidayWeek); if ($status) { $app->addSuccess('admin.holiday.save.complete', 'admin'); return $app->redirect($app->url('admin_holiday_week')); } else { $app->addError('admin.holiday.save.error', 'admin'); } } } return $app->render('Holiday/View/admin/week.twig', array('form' => $form->createView(), 'TargetHolidayWeek' => $TargetHolidayWeek)); }
public function edit(Application $app, $id = null) { $Payment = $app['eccube.repository.payment']->findOrCreate($id); $form = $app['form.factory']->createBuilder('payment_register')->getForm(); $form->setData($Payment); // 登録ボタン押下 if ('POST' === $app['request']->getMethod()) { $form->handleRequest($app['request']); if ($form->isValid()) { $PaymentData = $form->getData(); // 手数料を設定できない場合には、手数料を0にする if ($PaymentData->getChargeFlg() == 2) { $PaymentData->setCharge(0); } // ファイルアップロード $file = $form['payment_image']->getData(); $fs = new Filesystem(); if ($file && $fs->exists($app['config']['image_temp_realdir'] . '/' . $file)) { $fs->rename($app['config']['image_temp_realdir'] . '/' . $file, $app['config']['image_save_realdir'] . '/' . $file); } $app['orm.em']->persist($PaymentData); $app['orm.em']->flush(); $app->addSuccess('admin.register.complete', 'admin'); return $app->redirect($app->url('admin_setting_shop_payment')); } } return $app->render('Setting/Shop/payment_edit.twig', array('form' => $form->createView(), 'payment_id' => $id, 'Payment' => $Payment)); }
/** * クーポンが利用されていないかチェック * */ public function onControllerShoppingConfirmBefore($event = null) { $cartService = $this->app['eccube.service.cart']; $preOrderId = $cartService->getPreOrderId(); if (is_null($preOrderId)) { return; } $repository = $this->app['eccube.plugin.coupon.repository.coupon_order']; // クーポン受注情報を取得する $CouponOrder = $repository->findOneBy(array('pre_order_id' => $preOrderId)); if (!$CouponOrder) { return; } if ($this->app->isGranted('ROLE_USER')) { $Customer = $this->app->user(); } else { $Customer = $this->app['eccube.service.shopping']->getNonMember($this->sessionKey); } // クーポンが既に利用されているかチェック $couponUsedOrNot = $this->app['eccube.plugin.coupon.service.coupon']->checkCouponUsedOrNotBefore($CouponOrder->getCouponCd(), $CouponOrder->getOrderId(), $Customer); if ($couponUsedOrNot) { $this->app->addError($this->app->trans('front.plugin.coupon.shopping.sameuser'), 'front.request'); // 既に存在している if (is_null($event)) { header("Location: " . $this->app->url('shopping')); exit; } else { $response = $this->redirect($this->app->url('shopping')); $event->setResponse($response); return; } } }
/** * 新着情報を登録・編集する。 * * @param Application $app * @param Request $request * @param integer $id * @throws NotFoundHttpException * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response */ public function edit(Application $app, Request $request, $id = null) { if ($id) { $News = $app['eccube.repository.news']->find($id); if (!$News) { throw new NotFoundHttpException(); } $News->setLinkMethod((bool) $News->getLinkMethod()); } else { $News = new \Eccube\Entity\News(); } $form = $app['form.factory']->createBuilder('admin_news', $News)->getForm(); if ('POST' === $request->getMethod()) { $form->handleRequest($request); if ($form->isValid()) { $data = $form->getData(); if (empty($data['url'])) { $News->setLinkMethod(Constant::DISABLED); } $status = $app['eccube.repository.news']->save($News); if ($status) { $app->addSuccess('admin.news.save.complete', 'admin'); return $app->redirect($app->url('admin_content_news')); } $app->addError('admin.news.save.error', 'admin'); } } return $app->render('Content/news_edit.twig', array('form' => $form->createView(), 'News' => $News)); }
/** * List, add, edit maker. * * @param Application $app * @param Request $request * @param null $id * * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Symfony\Component\HttpFoundation\Response */ public function index(Application $app, Request $request, $id = null) { $repos = $app['eccube.plugin.maker.repository.maker']; $TargetMaker = new Maker(); if ($id) { $TargetMaker = $repos->find($id); if (!$TargetMaker) { log_error('The Maker not found!', array('Maker id' => $id)); throw new NotFoundHttpException(); } } $form = $app['form.factory']->createBuilder('admin_maker', $TargetMaker)->getForm(); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { log_info('Maker add/edit start.'); $status = $repos->save($TargetMaker); if ($status) { log_info('Maker add/edit success', array('Maker id' => $TargetMaker->getId())); $app->addSuccess('admin.plugin.maker.save.complete', 'admin'); return $app->redirect($app->url('admin_plugin_maker_index')); } else { log_info('Maker add/edit fail!', array('Maker id' => $TargetMaker->getId())); $app->addError('admin.plugin.maker.save.error', 'admin'); } } /** * @var ArrayCollection $arrMaker */ $arrMaker = $app['eccube.plugin.maker.repository.maker']->findBy(array(), array('rank' => 'DESC')); return $app->render('Maker/Resource/template/admin/maker.twig', array('form' => $form->createView(), 'arrMaker' => $arrMaker, 'TargetMaker' => $TargetMaker)); }
public function index(Application $app, Request $request, $class_name_id, $id = null) { // $ClassName = $app['eccube.repository.class_name']->find($class_name_id); if (!$ClassName) { throw new NotFoundHttpException(); } if ($id) { $TargetClassCategory = $app['eccube.repository.class_category']->find($id); if (!$TargetClassCategory || $TargetClassCategory->getClassName() != $ClassName) { throw new NotFoundHttpException(); } } else { $TargetClassCategory = new \Eccube\Entity\ClassCategory(); $TargetClassCategory->setClassName($ClassName); } // $form = $app['form.factory']->createBuilder('admin_class_category', $TargetClassCategory)->getForm(); if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { $status = $app['eccube.repository.class_category']->save($TargetClassCategory); if ($status) { $app->addSuccess('admin.class_category.save.complete', 'admin'); return $app->redirect($app->url('admin_product_class_category', array('class_name_id' => $ClassName->getId()))); } else { $app->addError('admin.class_category.save.error', 'admin'); } } } $ClassCategories = $app['eccube.repository.class_category']->getList($ClassName); return $app->render('Product/class_category.twig', array('form' => $form->createView(), 'ClassName' => $ClassName, 'ClassCategories' => $ClassCategories, 'TargetClassCategory' => $TargetClassCategory)); }
public function edit(Application $app, Request $request, $id) { $repos = $app['eccube.plugin.holiday.repository.holidayconfig']; $TargetHolidayConfig = new \Plugin\Holiday\Entity\HolidayConfig(); if ($id) { $TargetHolidayConfig = $repos->find($id); if (!$TargetHolidayConfig) { throw new NotFoundHttpException(); } } $form = $app['form.factory']->createBuilder('admin_holiday_config', $TargetHolidayConfig)->getForm(); if ('POST' === $request->getMethod()) { $form->handleRequest($request); if ($form->isValid()) { $status = $repos->save($TargetHolidayConfig); if ($status) { $app->addSuccess('admin.holiday.save.complete', 'admin'); return $app->redirect($app->url('plugin_holiday_config')); } else { $app->addError('admin.holiday.save.error', 'admin'); } } } return $app->render('Holiday/View/admin/holiday_config.twig', array('form' => $form->createView(), 'TargetHolidayConfig' => $TargetHolidayConfig)); }
public function index(Application $app, Request $request) { /* @var $builder \Symfony\Component\Form\FormBuilderInterface */ $builder = $app['form.factory']->createBuilder('contact'); /* @var $form \Symfony\Component\Form\FormInterface */ $form = $builder->getForm(); if ($app['security']->isGranted('ROLE_USER')) { /* @var $user \Eccube\Entity\Customer */ $user = $app['user']; $form->setData(array('name01' => $user->getName01(), 'name02' => $user->getName02(), 'kana01' => $user->getKana01(), 'kana02' => $user->getKana02(), 'zip01' => $user->getZip01(), 'zip02' => $user->getZip02(), 'pref' => $user->getPref(), 'addr01' => $user->getAddr01(), 'addr02' => $user->getAddr02(), 'tel01' => $user->getTel01(), 'tel02' => $user->getTel02(), 'tel03' => $user->getTel03(), 'email' => $user->getEmail())); } if ('POST' === $request->getMethod()) { $form->handleRequest($request); if ($form->isValid()) { switch ($request->get('mode')) { case 'confirm': $builder->setAttribute('freeze', true); $form = $builder->getForm(); $form->handleRequest($request); return $app->render('Contact/confirm.twig', array('form' => $form->createView())); case 'complete': // メール送信 $app['eccube.service.mail']->sendContactMail($form->getData()); return $app->redirect($app->url('contact_complete')); break; } } } return $app->render('Contact/index.twig', array('form' => $form->createView())); }
public function index(Application $app, Request $request, $id = null) { if ($id) { $TargetClassName = $app['eccube.repository.class_name']->find($id); if (!$TargetClassName) { throw new NotFoundHttpException(); } } else { $TargetClassName = new \Eccube\Entity\ClassName(); } $builder = $app['form.factory']->createBuilder('admin_class_name', $TargetClassName); $event = new EventArgs(array('builder' => $builder, 'TargetClassName' => $TargetClassName), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_PRODUCT_CLASS_NAME_INDEX_INITIALIZE, $event); $form = $builder->getForm(); if ($request->getMethod() === 'POST') { $form->handleRequest($request); if ($form->isValid()) { $status = $app['eccube.repository.class_name']->save($TargetClassName); if ($status) { $event = new EventArgs(array('form' => $form, 'TargetClassName' => $TargetClassName), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_PRODUCT_CLASS_NAME_INDEX_COMPLETE, $event); $app->addSuccess('admin.class_name.save.complete', 'admin'); return $app->redirect($app->url('admin_product_class_name')); } else { $app->addError('admin.class_name.save.error', 'admin'); } } } $ClassNames = $app['eccube.repository.class_name']->getList(); return $app->render('Product/class_name.twig', array('form' => $form->createView(), 'ClassNames' => $ClassNames, 'TargetClassName' => $TargetClassName)); }
/** * Create & Edit. * * @param Application $app * @param Request $request * @param int $id * * @return \Symfony\Component\HttpFoundation\Response */ public function edit(Application $app, Request $request, $id = null) { /* @var RecommendProduct $Recommend */ $Recommend = null; $Product = null; if (!is_null($id)) { // IDからおすすめ商品情報を取得する $Recommend = $app['eccube.plugin.recommend.repository.recommend_product']->find($id); if (!$Recommend) { $app->addError('admin.recommend.not_found', 'admin'); log_info('The recommend product is not found.', array('Recommend id' => $id)); return $app->redirect($app->url('admin_recommend_list')); } $Product = $Recommend->getProduct(); } // formの作成 /* @var Form $form */ $form = $app['form.factory']->createBuilder('admin_recommend', $Recommend)->getForm(); $form->handleRequest($request); $data = $form->getData(); if ($form->isSubmitted() && $form->isValid()) { $service = $app['eccube.plugin.recommend.service.recommend']; if (is_null($data['id'])) { if ($status = $service->createRecommend($data)) { $app->addSuccess('admin.plugin.recommend.register.success', 'admin'); log_info('Add the new recommend product success.', array('Product id' => $data['Product']->getId())); } } else { if ($status = $service->updateRecommend($data)) { $app->addSuccess('admin.plugin.recommend.update.success', 'admin'); log_info('Update the recommend product success.', array('Recommend id' => $Recommend->getId(), 'Product id' => $data['Product']->getId())); } } if (!$status) { $app->addError('admin.recommend.not_found', 'admin'); log_info('Failed the recommend product updating.', array('Product id' => $data['Product']->getId())); } return $app->redirect($app->url('admin_recommend_list')); } if (!empty($data['Product'])) { $Product = $data['Product']; } $arrProductIdByRecommend = $app['eccube.plugin.recommend.repository.recommend_product']->getRecommendProductIdAll(); return $this->registerView($app, array('form' => $form->createView(), 'recommend_products' => json_encode($arrProductIdByRecommend), 'Product' => $Product)); }
/** * 会員登録画面. * * @param Application $app * @param Request $request * @return \Symfony\Component\HttpFoundation\Response */ public function index(Application $app, Request $request) { if ($app->isGranted('ROLE_USER')) { log_info('認証済のためログイン処理をスキップ'); return $app->redirect($app->url('mypage')); } /** @var $Customer \Eccube\Entity\Customer */ $Customer = $app['eccube.repository.customer']->newCustomer(); /* @var $builder \Symfony\Component\Form\FormBuilderInterface */ $builder = $app['form.factory']->createBuilder('entry', $Customer); $event = new EventArgs(array('builder' => $builder, 'Customer' => $Customer), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_ENTRY_INDEX_INITIALIZE, $event); /* @var $form \Symfony\Component\Form\FormInterface */ $form = $builder->getForm(); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { switch ($request->get('mode')) { case 'confirm': log_info('会員登録確認開始'); $builder->setAttribute('freeze', true); $form = $builder->getForm(); $form->handleRequest($request); log_info('会員登録確認完了'); return $app->render('Entry/confirm.twig', array('form' => $form->createView())); case 'complete': log_info('会員登録開始'); $Customer->setSalt($app['eccube.repository.customer']->createSalt(5))->setPassword($app['eccube.repository.customer']->encryptPassword($app, $Customer))->setSecretKey($app['eccube.repository.customer']->getUniqueSecretKey($app)); $CustomerAddress = new \Eccube\Entity\CustomerAddress(); $CustomerAddress->setFromCustomer($Customer); $app['orm.em']->persist($Customer); $app['orm.em']->persist($CustomerAddress); $app['orm.em']->flush(); log_info('会員登録完了'); $event = new EventArgs(array('form' => $form, 'Customer' => $Customer, 'CustomerAddress' => $CustomerAddress), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_ENTRY_INDEX_COMPLETE, $event); $activateUrl = $app->url('entry_activate', array('secret_key' => $Customer->getSecretKey())); /** @var $BaseInfo \Eccube\Entity\BaseInfo */ $BaseInfo = $app['eccube.repository.base_info']->get(); $activateFlg = $BaseInfo->getOptionCustomerActivate(); // 仮会員設定が有効な場合は、確認メールを送信し完了画面表示. if ($activateFlg) { // メール送信 $app['eccube.service.mail']->sendCustomerConfirmMail($Customer, $activateUrl); if ($event->hasResponse()) { return $event->getResponse(); } log_info('仮会員登録完了画面へリダイレクト'); return $app->redirect($app->url('entry_complete')); // 仮会員設定が無効な場合は認証URLへ遷移させ、会員登録を完了させる. } else { log_info('本会員登録画面へリダイレクト'); return $app->redirect($activateUrl); } } } return $app->render('Entry/index.twig', array('form' => $form->createView())); }
public function login(Application $app, Request $request) { if ($app->isGranted('ROLE_ADMIN')) { return $app->redirect($app->url('admin_homepage')); } /* @var $form \Symfony\Component\Form\FormInterface */ $form = $app['form.factory']->createNamedBuilder('', 'admin_login')->getForm(); return $app['view']->render('login.twig', array('error' => $app['security.last_error']($request), 'form' => $form->createView())); }
public function delete(Application $app, $id) { $Customer = $app['user']; // 別のお届け先削除 if ($app['eccube.repository.customer_address']->deleteByCustomerAndId($Customer, $id)) { $app->addError('mypage.address.delete.failed'); } else { $app->addSuccess('mypage.address.delete.complete'); } return $app->redirect($app->url('mypage_delivery')); }
public function delete(Application $app, Request $request, $id) { $Customer = $app['orm.em']->getRepository('Eccube\\Entity\\Customer')->find($id); if (is_null($Customer)) { throw new NotFoundHttpException(); } $Customer->setDelFlg(1); $app['orm.em']->persist($Customer); $app['orm.em']->flush(); $app->addSuccess('admin.customer.delete.complete', 'admin'); return $app->redirect($app->url('admin_customer')); }
/** * お届け先編集画面. * * @param Application $app * @param Request $request * @return \Symfony\Component\HttpFoundation\Response */ public function edit(Application $app, Request $request, $id = null) { $Customer = $app['user']; // 配送先住所最大値判定 // $idが存在する際は、追加処理ではなく、編集の処理ため本ロジックスキップ if (is_null($id)) { $addressCurrNum = count($Customer->getCustomerAddresses()); $addressMax = $app['config']['deliv_addr_max']; if ($addressCurrNum >= $addressMax) { throw new NotFoundHttpException('お届け先の登録数の上限を超えています'); } } $CustomerAddress = $app['eccube.repository.customer_address']->findOrCreateByCustomerAndId($Customer, $id); $parentPage = $request->get('parent_page', null); // 正しい遷移かをチェック $allowdParents = array($app->url('mypage_delivery'), $app->url('shopping_delivery')); // 遷移が正しくない場合、デフォルトであるマイページの配送先追加の画面を設定する if (!in_array($parentPage, $allowdParents)) { // @deprecated 使用されていないコード $parentPage = $app->url('mypage_delivery'); } $builder = $app['form.factory']->createBuilder('customer_address', $CustomerAddress); $event = new EventArgs(array('builder' => $builder, 'Customer' => $Customer, 'CustomerAddress' => $CustomerAddress), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_MYPAGE_DELIVERY_EDIT_INITIALIZE, $event); $form = $builder->getForm(); $form->handleRequest($request); if ($form->isSubmitted() && $form->isValid()) { log_info('お届け先登録開始', array($id)); $app['orm.em']->persist($CustomerAddress); $app['orm.em']->flush(); log_info('お届け先登録完了', array($id)); $event = new EventArgs(array('form' => $form, 'Customer' => $Customer, 'CustomerAddress' => $CustomerAddress), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::FRONT_MYPAGE_DELIVERY_EDIT_COMPLETE, $event); $app->addSuccess('mypage.delivery.add.complete'); return $app->redirect($app->url('mypage_delivery')); } $BaseInfo = $app['eccube.repository.base_info']->get(); return $app->render('Mypage/delivery_edit.twig', array('form' => $form->createView(), 'parentPage' => $parentPage, 'BaseInfo' => $BaseInfo)); }
public function receive_authcode(Application $app, Request $request) { $code = $request->get('code'); $app['session']->set('authorization_code', $code); $client = new Client('https://api.freee.co.jp'); $FreeeLight = $app['eccube.plugin.repository.freeelight']->find(1); $params = array('grant_type' => 'authorization_code', 'client_id' => $FreeeLight->getClientId(), 'client_secret' => $FreeeLight->getClientSecret(), 'code' => $code, 'redirect_uri' => $app->url('plugin_FreeeLight_oauth2_receive_authcode')); $tokens = $client->post('/oauth/token', array(), $params)->send()->json(); $OAuth2 = $app['eccube.plugin.repository.freee_oauth2']->find(FreeeOAuth2::DEFAULT_ID); if (!is_object($OAuth2)) { $OAuth2 = new FreeeOAuth2(); $OAuth2->setId(FreeeOAuth2::DEFAULT_ID); $OAuth2->setPropertiesFromArray($tokens); $OAuth2->setUpdateDate(new \DateTime()); $app['orm.em']->persist($OAuth2); } else { $OAuth2->setPropertiesFromArray($tokens); $OAuth2->setUpdateDate(new \DateTime()); } $app['orm.em']->flush($OAuth2); $client = new Client('https://api.freee.co.jp'); $params = array(); $master = array(); $companies = $client->get('/api/1/companies.json', array('Authorization' => 'Bearer ' . $OAuth2->getAccessToken()), $params)->send()->json(); foreach ($companies['companies'] as $arrCompany) { $Company = $app['eccube.plugin.repository.freee_company']->find($arrCompany['id']); if (!is_object($Company)) { $Company = new FreeeCompany(); $Company->setPropertiesFromArray($arrCompany); $app['orm.em']->persist($Company); } else { $Company->setPropertiesFromArray($arrCompany); } $app['orm.em']->flush($Company); } return $app->redirect($app->url('plugin_FreeeLight_config_step3')); }
/** * getTargetProduct. * * @param FilterResponseEvent $event * * @return Product $Product */ private function getTargetProduct(FilterResponseEvent $event) { $request = $event->getRequest(); $response = $event->getResponse(); if ($request->attributes->get('id')) { $id = $request->attributes->get('id'); } else { $location = explode('/', $response->headers->get('location')); $url = explode('/', $this->app->url('admin_product_product_edit', array('id' => '0'))); $diffs = array_values(array_diff($location, $url)); $id = $diffs[0]; } $Product = $this->app['eccube.repository.product']->find($id); return $Product; }
public function login(Application $app, Request $request) { if ($app->isGranted('IS_AUTHENTICATED_FULLY')) { return $app->redirect($app->url('mypage')); } /* @var $form \Symfony\Component\Form\FormInterface */ $builder = $app['form.factory']->createNamedBuilder('', 'customer_login'); if ($app->isGranted('IS_AUTHENTICATED_REMEMBERED')) { $Customer = $app->user(); if ($Customer) { $builder->get('login_email')->setData($Customer->getEmail()); } } $form = $builder->getForm(); return $app->render('Mypage/login.twig', array('error' => $app['security.last_error']($request), 'form' => $form->createView())); }
public function index(Application $app) { $BaseInfo = $app['eccube.repository.base_info']->get(); $form = $app['form.factory']->createBuilder('shop_master', $BaseInfo)->getForm(); if ($app['request']->getMethod() === 'POST') { $form->handleRequest($app['request']); if ($form->isValid()) { $app['orm.em']->persist($BaseInfo); $app['orm.em']->flush(); $app->addSuccess('admin.shop.save.complete', 'admin'); return $app->redirect($app->url('admin_setting_shop')); } $app->addError('admin.shop.save.error', 'admin'); } return $app->render('Setting/Shop/shop_master.twig', array('form' => $form->createView())); }
public function edit(Application $app, Request $request, $id = null) { $previous_password = null; if ($id) { $Member = $app['eccube.repository.member']->find($id); if (!$Member) { throw new NotFoundHttpException(); } $previous_password = $Member->getPassword(); $Member->setPassword($app['config']['default_password']); } else { $Member = new \Eccube\Entity\Member(); } $builder = $app['form.factory']->createBuilder('admin_member', $Member); $event = new EventArgs(array('builder' => $builder, 'Member' => $Member), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SYSTEM_MEMBER_EDIT_INITIALIZE, $event); $form = $builder->getForm(); if ('POST' === $request->getMethod()) { $form->handleRequest($request); if ($form->isValid()) { if (!is_null($previous_password) && $Member->getpassword() === $app['config']['default_password']) { // 編集時にPWを変更していなければ // 変更前のパスワード(暗号化済み)をセット $Member->setPassword($previous_password); } else { $salt = $Member->getSalt(); if (!isset($salt)) { $salt = $app['eccube.repository.member']->createSalt(5); $Member->setSalt($salt); } // 入力されたPWを暗号化してセット $password = $app['eccube.repository.member']->encryptPassword($Member); $Member->setPassword($password); } $status = $app['eccube.repository.member']->save($Member); if ($status) { $event = new EventArgs(array('form' => $form, 'Member' => $Member), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SYSTEM_MEMBER_EDIT_COMPLETE, $event); $app->addSuccess('admin.member.save.complete', 'admin'); return $app->redirect($app->url('admin_setting_system_member')); } else { $app->addError('admin.member.save.error', 'admin'); } } } return $app->render('Setting/System/member_edit.twig', array('form' => $form->createView(), 'Member' => $Member)); }
public function index(Application $app, Request $request, $id = CsvType::CSV_TYPE_ORDER) { $CsvType = $app['eccube.repository.master.csv_type']->find($id); if (is_null($CsvType)) { throw new NotFoundHttpException(); } $builder = $app->form(); $builder->add('csv_type', 'csv_type', array('label' => 'CSV出力項目', 'required' => true, 'constraints' => array(new Assert\NotBlank()), 'data' => $CsvType)); $CsvNotOutput = $app['eccube.repository.csv']->findBy(array('CsvType' => $CsvType, 'enable_flg' => Constant::DISABLED), array('rank' => 'ASC')); $builder->add('csv_not_output', 'entity', array('class' => 'Eccube\\Entity\\Csv', 'property' => 'disp_name', 'required' => false, 'expanded' => false, 'multiple' => true, 'choices' => $CsvNotOutput)); $CsvOutput = $app['eccube.repository.csv']->findBy(array('CsvType' => $CsvType, 'enable_flg' => Constant::ENABLED), array('rank' => 'ASC')); $builder->add('csv_output', 'entity', array('class' => 'Eccube\\Entity\\Csv', 'property' => 'disp_name', 'required' => false, 'expanded' => false, 'multiple' => true, 'choices' => $CsvOutput)); $event = new EventArgs(array('builder' => $builder, 'CsvOutput' => $CsvOutput, 'CsvType' => $CsvType), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_CSV_INDEX_INITIALIZE, $event); $form = $builder->getForm(); if ('POST' === $request->getMethod()) { $data = $request->get('form'); if (isset($data['csv_not_output'])) { $Csvs = $data['csv_not_output']; $rank = 1; foreach ($Csvs as $csv) { $c = $app['eccube.repository.csv']->find($csv); $c->setRank($rank); $c->setEnableFlg(Constant::DISABLED); $rank++; } } if (isset($data['csv_output'])) { $Csvs = $data['csv_output']; $rank = 1; foreach ($Csvs as $csv) { $c = $app['eccube.repository.csv']->find($csv); $c->setRank($rank); $c->setEnableFlg(Constant::ENABLED); $rank++; } } $app['orm.em']->flush(); $event = new EventArgs(array('form' => $form, 'CsvOutput' => $CsvOutput, 'CsvType' => $CsvType), $request); $app['eccube.event.dispatcher']->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_CSV_INDEX_COMPLETE, $event); $app->addSuccess('admin.shop.csv.save.complete', 'admin'); return $app->redirect($app->url('admin_setting_shop_csv', array('id' => $id))); } return $app->render('Setting/Shop/csv.twig', array('form' => $form->createView(), 'id' => $id)); }