فهرست منبع

Removed unused pQuery extension interface.

Taddeus Kroes 14 سال پیش
والد
کامیت
5682c2dfd8
8فایلهای تغییر یافته به همراه7 افزوده شده و 17 حذف شده
  1. 1 1
      pquery.array.php
  2. 1 1
      pquery.cache.php
  3. 1 1
      pquery.css.php
  4. 1 1
      pquery.js.php
  5. 0 10
      pquery.php
  6. 1 1
      pquery.sql.php
  7. 1 1
      pquery.template.php
  8. 1 1
      pquery.url.php

+ 1 - 1
pquery.array.php

@@ -8,7 +8,7 @@
 /**
  * @todo Documentation
  */
-class pQueryArray extends pQuery implements pQueryExtension {
+class pQueryArray extends pQuery {
 	static $accepts = array('array');
 	
 	/**

+ 1 - 1
pquery.cache.php

@@ -9,7 +9,7 @@
  * @todo Documentation
  * @property string $files 
  */
-class pQueryCache extends pQuery implements pQueryExtension {
+class pQueryCache extends pQuery {
 	const CACHE_FOLDER = 'cache/';
 	const ADMINISTRATION_FILE = 'administration.php';
 	

+ 1 - 1
pquery.css.php

@@ -11,7 +11,7 @@ __p::load_utils('CssParser');
 /**
  * @todo Documentation
  */
-class pQueryCss extends pQueryCache implements pQueryExtension {
+class pQueryCss extends pQueryCache {
 	static $accepts = array('array' => 'add_extensions', 'string' => 'make_array');
 	
 	var $minify_config = array(

+ 1 - 1
pquery.js.php

@@ -11,7 +11,7 @@ __p::load_utils('jshrink');
 /**
  * @todo Documentation
  */
-class pQueryJs extends pQueryCache implements pQueryExtension {
+class pQueryJs extends pQueryCache {
 	static $accepts = array('array' => 'add_extensions', 'string' => 'make_array');
 	
 	/**

+ 0 - 10
pquery.php

@@ -301,16 +301,6 @@ class pQueryException extends Exception {
 	
 }
 
-/**
- * Interface used for extending the jQuery class.
- */
-interface pQueryExtension {
-	/**
-	 * 
-	 */
-	
-}
-
 /**
  * Shortcut constructor for {@link pQuery}.
  * 

+ 1 - 1
pquery.sql.php

@@ -9,7 +9,7 @@
  * @todo Documentation
  * @property $query The query that is being evaluated.
  */
-class pQuerySql extends pQuery implements pQueryExtension {
+class pQuerySql extends pQuery {
 	static $accepts = array('string' => 'parse_query', 'resource');
 	
 	/**

+ 1 - 1
pquery.template.php

@@ -11,7 +11,7 @@ __p::load_utils('block');
  * @todo Documentation
  * @property string $content The template's content.
  */
-class pQueryTemplate extends pQuery implements pQueryExtension {
+class pQueryTemplate extends pQuery {
 	const DEFAULT_EXTENSION = 'tpl';
 	
 	static $accepts = array('string' => 'open_template_file');

+ 1 - 1
pquery.url.php

@@ -9,7 +9,7 @@
  * @todo Documentation
  * @property string $content The template's content.
  */
-class pQueryUrl extends pQuery implements pQueryExtension {
+class pQueryUrl extends pQuery {
 	static $accepts = array('string' => 'parse_url');
 	
 	/**