Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pquery
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
pquery
Commits
dc95da1c
Commit
dc95da1c
authored
Dec 10, 2011
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated documentation.
parent
7394bf50
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
15 deletions
+26
-15
pquery.array.php
pquery.array.php
+3
-2
pquery.cache.php
pquery.cache.php
+5
-3
pquery.css.php
pquery.css.php
+3
-2
pquery.js.php
pquery.js.php
+3
-2
pquery.sql.php
pquery.sql.php
+2
-1
pquery.template.php
pquery.template.php
+2
-1
pquery.url.php
pquery.url.php
+8
-4
No files found.
pquery.array.php
View file @
dc95da1c
<?php
/**
* pQuery plugin for executing common array functions.
* pQuery plugin for easily executing practical functions on arrays, in a
* more object-oriented manner than natively supported by PHP.
*
* @package pQuery
*/
/**
*
@todo Documentation
*
pQuery extension class for the 'array' plugin.
*/
class
pQueryArray
extends
pQuery
{
static
$accepts
=
array
(
'array'
);
...
...
pquery.cache.php
View file @
dc95da1c
<?php
/**
* pQuery plugin for
parsing templat
es.
* pQuery plugin for
cache-control of a list of fil
es.
*
* @package pQuery
*/
/**
* @todo Documentation
* @property string $files
* pQuery extension class for the 'cache' plugin.
*
* @property string $files The list of files in the cached object.
* @todo Method documentation
*/
class
pQueryCache
extends
pQuery
{
const
CACHE_FOLDER
=
'cache/'
;
...
...
pquery.css.php
View file @
dc95da1c
<?php
/**
* pQuery plugin for parsing templates.
* pQuery plugin for composing sets of CSS stylesheets.
* The plugin has built-in cache control and uses the CssParser class.
*
* @package pQuery
*/
...
...
@@ -9,7 +10,7 @@ __p::require_plugins('cache');
__p
::
load_utils
(
'CssParser'
);
/**
*
@todo Documentation
*
pQuery extension class for the 'css' plugin.
*/
class
pQueryCss
extends
pQueryCache
{
static
$accepts
=
array
(
'array'
=>
'add_extensions'
,
'string'
=>
'make_array'
);
...
...
pquery.js.php
View file @
dc95da1c
<?php
/**
* pQuery plugin for parsing templates.
* pQuery plugin for composing sets of JavaScript files.
* The plugin has built-in cache control and supports the JShrink minifier.
*
* @package pQuery
*/
...
...
@@ -9,7 +10,7 @@ __p::require_plugins('cache');
__p
::
load_utils
(
'jshrink'
);
/**
*
@todo Documentation
*
pQuery extension class for the 'js' plugin.
*/
class
pQueryJs
extends
pQueryCache
{
static
$accepts
=
array
(
'array'
=>
'add_extensions'
,
'string'
=>
'make_array'
);
...
...
pquery.sql.php
View file @
dc95da1c
...
...
@@ -6,7 +6,8 @@
*/
/**
* @todo Documentation
* pQuery extension class for the 'sql' plugin.
*
* @property $query The query that is being evaluated.
*/
class
pQuerySql
extends
pQuery
{
...
...
pquery.template.php
View file @
dc95da1c
...
...
@@ -8,7 +8,8 @@
__p
::
load_utils
(
'block'
);
/**
* @todo Documentation
* pQuery extension class for the 'tpl' plugin.
*
* @property string $content The template's content.
*/
class
pQueryTemplate
extends
pQuery
{
...
...
pquery.url.php
View file @
dc95da1c
<?php
/**
* pQuery plugin for parsing
template
s.
* pQuery plugin for parsing
URL's and calling corresponding handler
s.
*
* @package pQuery
*/
/**
* @todo Documentation
* @property string $content The template's content.
* pQuery extension class for the 'url' plugin.
*
* @property string $url The current url, with slashes removed at begin and end.
*/
class
pQueryUrl
extends
pQuery
{
static
$accepts
=
array
(
'string'
=>
'parse_url'
);
...
...
@@ -19,9 +20,12 @@ class pQueryUrl extends pQuery {
static
$variable_alias
=
'url'
;
/**
* The current set of handlers, pointed to by regular expression patterns.
*
* The handler that is called for the current URL is the one corresponding
* to the first pattern in this list that matches the URL.
*
* @var
string
* @var
array
*/
static
$handlers
=
array
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment