Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 889) sorted by last modified time

12345678910>>...36

/plugin/pagelist/
H A DCOPYING296 the "copyright" line and a pointer to where the full notice is found.
/plugin/pagequery/
H A Dreadme.md21 * OR create a great blog-like start page, where links are followed by a neat snippet of the page content
/plugin/twofactoremail/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/twofactor/lang/en/
H A Dprofile.txt3 This is where you can configure what you want to use as a second factor besides your usual credentials when logging into DokuWiki. What options are available depends on what your administrator has configured.
/plugin/twofactor/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/attribute/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/nspages/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/dbquery/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/vertical/
H A DREADME.md13 You need to set `<vertical head=align body=align>` and `</vertical>` tags around your table, where
/plugin/siteexport/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/linkback/
H A DCOPYING296 the "copyright" line and a pointer to where the full notice is found.
/plugin/structpublish/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/structpublish/meta/
H A DAccessTableStructpublish.php65 $where = "WHERE pid = ?";
68 $where .= " AND REV > 0 AND rev <= ?";
73 $sql = "SELECT rev FROM $table $where ORDER BY rev DESC LIMIT 1";
/plugin/diagrams/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/struct/meta/
H A DAccessTablePage.php50 $where = "WHERE pid = ?";
53 $where .= " AND REV > 0 AND rev <= ?";
58 $sql = "SELECT rev FROM $table $where ORDER BY rev DESC LIMIT 1";
H A DQueryBuilder.php20 protected $where; variable in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
31 $this->where = new QueryBuilderWhere($this);
132 return $this->where;
232 ' WHERE ' . $this->where->toSQL() . "\n";
H A DQueryBuilderWhere.php21 * @param QueryBuilder $QB The QueryBuilder to which this where-clause belongs
44 return $this->where('AND', $statement);
55 return $this->where('OR', $statement);
65 return $this->where('AND', null);
75 return $this->where('OR', null);
86 public function where($op = 'AND', $statement = null) function in dokuwiki\\plugin\\struct\\meta\\QueryBuilderWhere
94 $where = new QueryBuilderWhere($this->QB, $op, $statement);
95 $this->statement[] = $where;
100 return $where;
113 * @param bool $first is this the first where statemen
[all...]
H A DSearch.php517 * Returns all the columns that where added to the search
H A DSearchCloud.php56 $QB->filters()->where('AND', 'tag IS NOT \'\'');
/plugin/struct/types/
H A DAbstractBaseType.php258 * @param string $name the form base name where this has to be stored
284 * @param string $name the form name where this has to be stored
373 * @param QueryBuilderWhere $add The where clause where statements can be added
384 $add = $add->where($op); // sub where group
389 $add->where($op, "$tablealias.$colname $comp $pl");
H A DAutoSummary.php58 $sub = $add->where($op);
H A DDateTime.php38 * @param string $name the form name where this has to be stored
141 $add = $add->where($op); // sub where group
146 $add->where($op, "$col $comp $pl");
H A DDecimal.php167 $add = $add->where($op); // open a subgroup
168 $add->where('AND', "$tablealias.$colname != ''");
174 $add = $add->where($op); // sub where group
180 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
H A DPage.php209 $sub = $add->where($op);
H A DTag.php129 $add = $add->where($op); // sub where group
134 $add->where($op, "LOWER(REPLACE($tablealias.$colname, ' ', '')) $comp LOWER(REPLACE($pl, ' ', ''))");

12345678910>>...36