/**
  * @param CONTEXT $context Context to which this grid belongs.
  */
 public function __construct($context)
 {
     parent::__construct($context);
     $this->css_class .= ' content-sized-tiles';
     $this->box_css_class = 'image-without-text';
 }
 /**
  * @param APPLICATION $context
  * @param COMMENT $comment Comments belong to this comment (can be empty).
  */
 public function __construct($context, $comment)
 {
     parent::__construct($context);
     $this->_comment = $comment;
 }
Exemplo n.º 3
0
 /**
  * @param CONTEXT $context Context to which this grid belongs.
  */
 public function __construct($context)
 {
     parent::__construct($context);
     $this->css_class .= ' tiny-tiles';
 }
 /**
  * @param APPLICATION $context Main application.
  * @param FORM $form The form within which this grid is shown.
  */
 public function __construct($context, $form)
 {
     parent::__construct($context);
     $this->_form = $form;
 }
 /**
  * @param CONTEXT $context Context to which this grid belongs.
  */
 public function __construct($context)
 {
     parent::__construct($context);
     $this->css_class .= ' full-width';
 }
Exemplo n.º 6
0
 /**
  * @param CONTEXT $context Context to which this grid belongs.
  */
 public function __construct($context)
 {
     parent::__construct($context);
 }