Home
last modified time | relevance | path

Searched refs:getType (Results 1 – 25 of 1713) sorted by relevance

12345678910>>...69

/plugin/struct/meta/
DValue.php127 $raw = $this->column->getType()->rawValue($val);
136 $this->display[] = $this->column->getType()->displayValue($val);
137 $this->compare[] = $this->column->getType()->compareValue($val);
175 return $this->column->getType()->renderMultiValue($this->value, $R, $mode);
178 return $this->column->getType()->renderValue($this->value, $R, $mode);
196 …$this->column->getType()->renderTagCloudLink($value, $R, $mode, $page, $filterQuery, $weight, $sho…
208 return $this->column->getType()->multiValueEditor($name, $this->rawvalue, $id);
210 return $this->column->getType()->valueEditor($name, $this->rawvalue, $id);
DSchemaEditor.php129 …$html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel(…
133 $checked = $col->getType()->isMulti() ? 'checked="checked"' : '';
138 $config = json_encode($col->getType()->getConfig(), JSON_PRETTY_PRINT);
148 $selected = ($col->getType()->getClass() == $type) ? 'selected="selected"' : '';
DColumn.php101 public function getType() function in dokuwiki\\plugin\\struct\\meta\\Column
169 return $this->getType()->isVisibleInEditor();
177 return $this->getType()->isVisibleInPage();
DSearchSQLBuilder.php105 $col->getType()->select($this->qb, $MN, 'value', $CN);
109 … $col->getType()->select($this->qb, 'data_' . $col->getTable(), $col->getColName(), $CN);
154 … $col->getType()->filter($subClause, $coltbl, $colnam, $comp, $value, $op); // type based filter
172 … $col->getType()->sort($this->qb, 'data_' . $col->getTable(), $colname, $asc ? 'ASC' : 'DESC');
DAggregationCloud.php47 $type = strtolower($value->getColumn()->getType()->getClass());
105 $asort = $a['tag']->getColumn()->getType()->getSortString($a['tag']);
106 $bsort = $b['tag']->getColumn()->getType()->getSortString($b['tag']);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/
DPrincipalTest.php15 $this->assertEquals(Principal::UNAUTHENTICATED, $principal->getType());
19 $this->assertEquals(Principal::AUTHENTICATED, $principal->getType());
23 $this->assertEquals(Principal::HREF, $principal->getType());
94 $this->assertEquals(Principal::HREF, $principal->getType());
107 $this->assertEquals(Principal::AUTHENTICATED, $principal->getType());
119 $this->assertEquals(Principal::UNAUTHENTICATED, $principal->getType());
/plugin/structjoin/types/
DJoin.php29 return $column->getType()->renderValue($value, $R, $mode);
43 return $column->getType()->renderMultiValue($values, $R, $mode);
61 return $column->getType()->displayValue($value);
79 return $column->getType()->rawValue($value);
107 $column->getType()->select($QB, $rightalias, $field, $alias);
166 $column->getType()->filter($add, $rightalias, $field, $comp, $value, $op);
191 $column->getType()->sort($QB, $rightalias, $field, $order);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
DDoctrineProxySubscriberTest.php36 self::assertEquals(['name' => get_parent_class($obj), 'params' => []], $event->getType());
45 self::assertEquals(['name' => 'FakedName', 'params' => []], $event->getType());
63 self::assertEquals(['name' => SimpleObjectProxy::class, 'params' => []], $event->getType());
74 self::assertEquals(['name' => 'FakedName', 'params' => []], $event->getType());
125 self::assertSame(['name' => 'foo', 'params' => ['bar']], $event->getType());
135 self::assertSame(['name' => 'foo', 'params' => []], $event->getType());
146 self::assertSame(['name' => SimpleObject::class, 'params' => ['baz']], $event->getType());
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
DIsInstanceOf.php61 $this->getType(),
75 $this->getType(),
80 private function getType() function in PHPUnit_Framework_Constraint_IsInstanceOf
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/
DProfileTest.php21 $this->assertEquals('type', $profile->getType());
94 $this->assertEquals($profile->getType(), $profile2->getType());
99 $this->assertEquals($profile1->getType(), $profile3->getType());
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
DHtmlDumper.php42 …rofile->getTemplate(), $profile->getType(), isset(self::$colors[$profile->getType()]) ? self::$col…
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/
DFacade.php44 throw new QueryBuilderException('undefined '.$this->_dsl->getType().' "'.$name.'"');
48 if (false === $this->_version->supports($name, $this->_dsl->getType())) {
50 …throw new QueryBuilderException($this->_dsl->getType().' "'.$name.'" in '.$reflection->getShortNam…
/plugin/struct/action/
Dmove.php70 if (get_class($col->getType()) == Page::class) {
72 } elseif (get_class($col->getType()) == Lookup::class) {
75 } elseif ($col->getType() instanceof Media) {
172 if ($col->getType() instanceof Lookup) {
192 $tconf = $col->getType()->getConfig();
/plugin/struct/types/
DLookup.php158 return $column->getType()->renderValue($value, $R, $mode);
180 return $column->getType()->renderMultiValue($values, $R, $mode);
202 return $column->getType()->displayValue($value);
222 return $column->getType()->rawValue($value);
256 $column->getType()->select($QB, $rightalias, $field, $alias);
291 $column->getType()->filter($add, $rightalias, $field, $comp, $value, $op);
320 $column->getType()->sort($QB, $rightalias, $field, $order);
/plugin/struct/helper/
Dfield.php118 if (!empty($value) && $this->column->getType() instanceof User) {
143 if (!empty($value) && $this->column->getType() instanceof User) {
166 $this->column->getType() instanceof Page
167 && $this->column->getType()->getConfig()['usetitles']
182 if ($this->column->getType() instanceof Lookup) {
/plugin/findologicxmlexport/vendor/hoa/stream/
DBucket.php100 if (self::IS_A_BRIGADE === $this->getType()) {
169 public function getType() function in Hoa\\Stream\\Bucket
262 if (null === $this->_bucket && self::IS_A_BRIGADE === $this->getType()) {
/plugin/structat/meta/
DSearchConfigAt.php126 $col->getType()->select($QB, $MN, 'value', $CN);
130 $col->getType()->select($QB, 'data_' . $col->getTable(), $col->getColName(), $CN);
165 … $col->getType()->filter($userWHERE, $coltbl, $colnam, $comp, $value, $op); // type based filter
174 $col->getType()->sort($QB, 'data_' . $col->getTable(), $colname, $asc ? 'ASC' : 'DESC');
/plugin/gtime/gtlib/asn1/
DASN1String.php56 $this->prepend($bytes, ASN1DER::encodeType($this->getType()));
95 protected abstract function getType(); function in ASN1String
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/Subscriber/
DDoctrineProxySubscriber.php37 $type = $event->getType();
80 $type = $event->getType();
97 $newType = $newEvent->getType();
/plugin/prosemirror/
Drenderer.php71 $parentNode = $this->nodestack->current()->getType();
122 if ($this->nodestack->current()->getType() === 'paragraph') {
131 if ($this->nodestack->current()->getType() === 'paragraph') {
142 if ($this->nodestack->current()->getType() === 'paragraph') {
158 if ($this->nodestack->current()->getType() === 'paragraph') {
184 if ($this->nodestack->current()->getType() === 'paragraph') {
274 if ($this->nodestack->current()->getType() === 'paragraph') {
308 $parentNode = $this->nodestack->current()->getType();
559 if ($this->nodestack->current()->getType() === 'paragraph') {
/plugin/combo/ComboStrap/
DRouterRedirection.php63 public function getType(): string function in ComboStrap\\RouterRedirection
65 return $this->routerBuilder->getType();
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
DBufferedTokenStream.php169 if ($token->getType() === Token::EOF) {
200 return $token === null ? Token::INVALID_TYPE : $token->getType();
310 if ($t->getType() === Token::EOF) {
314 if ($types === null || $types->contains($t->getType())) {
337 if ($token->getType() === Token::EOF) {
472 if ($t->getType() === Token::EOF) {
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
DAbstractLexer.php209 return $this->getType($value) === $token;
263 $type = $this->getType($match[0]);
326 abstract protected function getType(&$value); function in Doctrine\\Common\\Lexer\\AbstractLexer
/plugin/struct/_test/types/
DTagTest.php35 $tag = $schema->findColumn('tag')->getType();
45 $tag = $schema->findColumn('tags')->getType();
/plugin/combo/action/
Drouter.php317 switch ($redirection->getType()) {
471 if ($redirection->getType() !== RouterRedirection::REDIRECT_PERMANENT_METHOD) {
506 switch ($redirection->getType()) {
530 … throw new ExceptionCompile("The type ({$redirection->getType()}) is not an http redirection");
558 "METHOD" => $redirection->getType()

12345678910>>...69