This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import {Button, Card, Modal, OverlayTrigger, Tooltip} from 'react-bootstrap' | |
import {usePagination, useRowSelect, useSortBy, useTable} from 'react-table' | |
import UserService from "../service/userService"; | |
import Loader from "../../shared/Loader"; | |
import PerfectScrollbar from "perfect-scrollbar"; | |
import moment from "moment"; | |
import IndeterminateCheckbox from './IndeterminateCheckbox' | |
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$offset = ( $page - 1 ) * $limit; | |
$qb = $this->_em->createQueryBuilder(); | |
$qb->select( | |
'c' | |
, 'cf' | |
, 'p' | |
, 'pf' | |
,'partial uc.{id,displayName,picture}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Project\Entity; | |
use Application\Entity\AshAbstractEntity; | |
use Application\Entity\Filter\RemovedFilterInterface; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use Doctrine\Common\Collections\Collection; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* @ORM\Table(name="project_comments") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Entity | |
class Brand | |
{ | |
/** | |
* @var string | |
\*/ | |
protected $name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Form; | |
use Application\Entity\ProductDetails; | |
use Doctrine\Common\Persistence\ObjectManager; | |
use DoctrineModule\Stdlib\Hydrator\DoctrineObject as DoctrineHydrator; | |
use Zend\Form\Fieldset; | |
use Zend\InputFilter\InputFilterProviderInterface; |