Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

クエリカスタマイズ拡張を修正 #2792

Merged
merged 8 commits into from
Jan 30, 2018

Conversation

chihiro-adachi
Copy link
Contributor

@chihiro-adachi chihiro-adachi commented Jan 25, 2018

概要(Overview・Refs Issue)

クエリカスタマイズ拡張を動作するように修正しています。
#2789 の次にマージお願いします。

クエリカスタマイズ機構

#2285

相談

カスタマイズ対象の指定は、@QueryExtensionアノテーションではなく、getQueryKey()で指定します。

QueryCustomizerに以下のインターフェースを追加しています。

interface QueryCustomizer
{
    ...

    /**
     * カスタマイズ対象のキーを返します。
     */
    public function getQueryKey();
}

使用する際は、以下のような実装クラスを作成します。

class AdminCustomerCustomizer extends WhereCustomizer
{
    /**
     * 1回以上購入している会員を抽出
     *
     * @param array $params
     * @param $queryKey
     * @return WhereClause[]
     */
    protected function createStatements($params, $queryKey)
    {
        // travis-ciのテストが通らないため、コメントアウト
        // 試してみるにはコメントアウトを解除してください.
        //return [WhereClause::gte('c.buy_times', ':buy_times', ['buy_times' => 1])];

        return [];
    }
    
+    public function getQueryKey()
+    {
+        return QueryKey::CUSTOMER_SEARCH
+    }
}

@chihiro-adachi chihiro-adachi added this to the 3.n.0 milestone Jan 25, 2018
@kiy0taka kiy0taka merged commit dfcc266 into EC-CUBE:experimental/sf Jan 30, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants