ログインしている場合としていない場合の処理


php

    public function action()
    {
        //決済処理中ステータスのロールバック
        $objPurchase = new SC_Helper_Purchase_Ex();
        $objPurchase->cancelPendingOrder(PENDING_ORDER_CANCEL_FLAG);

        $this->tpl_title = '';
        $objCustomer = new SC_Customer_Ex();
        $this->isLogin = $objCustomer->isLoginSuccess(true);

    }

tpl

<!--{* ログインしている場合 *}-->
<!--{if $isLogin}-->
処理
<!--{else}-->
処理
<!--{/if}-->