components.class.php 1.6 KB
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
class reviewComponents extends sfComponents
{
    public function executeReview(sfWebRequest $request)
    {
        $this->culture = $this->getUser()->getCulture();
        if ($request->getParameter('alias')) {


            $productTags = Doctrine::getTable('Product')->findOneByAlias($request->getParameter('alias'))->getProductTags();
            $idsTags = array();
            foreach ($productTags as $tag) {
                $idsTags[] = $tag->getTagId();
            }

            if (count($idsTags) > 0) {
                $q = Doctrine_Query::create()
                    ->select("r.name, r.body, r.file, r.lang, r.is_activated, r.created_at")
                    ->from("Review r")
                    ->where("r.is_activated = 1")
                    ->andWhere("r.lang = ?", $this->getUser()->getCulture())
                    ->orderBy("r.created_at DESC")
                    ->innerJoin('r.ReviewTags rt')
                    ->andWhereIn('rt.tag_id', $idsTags);
                if (isset($this->limit) && $this->limit) {
                    $q->limit($this->limit);
                }
                $this->reviews = $q->fetchArray();
            } else {
                $q = array();
            }
        }else
        {
            $this->reviews = Doctrine_Query::create()
                ->select("r.name, r.body, r.file, r.lang, r.is_activated, r.created_at")
                ->from("Review r")
                ->where("r.is_activated = 1")
                ->andWhere("r.lang = ?", $this->getUser()->getCulture())
                ->orderBy("r.created_at DESC")
                ->fetchArray();
        }
    }
}