Ticket #522: jSelectorInterface.patch
| File jSelectorInterface.patch, 1.7 kB (added by doubleface, 10 months ago) |
|---|
-
lib/jelix/core/jSelector.class.php
old new 14 14 * @contributor Rahal 15 15 * @contributor Thibault PIRONT < nuKs > 16 16 * @contributor Julien Issler 17 * @contributor Christophe Thiriot < doubleface > 17 18 * @copyright 2005-2007 Laurent Jouanneau, 2007 Loic Mathaud, 2007 Rahal 18 19 * @copyright 2007 Thibault PIRONT 19 20 * @copyright 2008 Julien Issler 21 * @copyright 2008 Christophe Thiriot 20 22 * @link http://www.jelix.org 21 23 * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html 22 24 */ … … 412 414 } 413 415 414 416 /** 415 * selector for business class417 * selector for interface 416 418 * 417 * business class is a class stored in classname.class.php file in the classes/ module directory419 * interface is stored in interfacename.iface.php file in the classes/ module directory 418 420 * or one of its subdirectory. 419 * syntax : " module~classname" or "module~classname.421 * syntax : "iface:module~ifacename" or "module~ifacename. 420 422 * @package jelix 421 423 * @subpackage core_selector 422 424 * @since 1.0b2 423 425 */ 424 class jSelectorI nterface extends jSelectorClass {426 class jSelectorIface extends jSelectorClass { 425 427 protected $type = 'iface'; 426 428 protected $_dirname = 'classes/'; 427 429 protected $_suffix = '.iface.php'; 428 430 } 429 431 430 432 /** 433 * selector for interface 434 * @package jelix 435 * @subpackage core_selector 436 * @since 1.0b2 437 * @deprecated 438 */ 439 class jSelectorInterface extends jSelectorIface {} 440 441 /** 431 442 * selector for localisation string 432 443 * 433 444 * localisation string are stored in file properties.
