Manual loading fix for more classes in Zend_ pseudo-ns
This commit is contained in:
parent
7b04f413a0
commit
51960a891f
7 changed files with 19 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once 'customvalidators/ConditionalNotEmpty.php';
|
||||
|
||||
class Application_Form_AddShowLiveStream extends Zend_Form_SubForm
|
||||
{
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once 'customfilters/ImageSize.php';
|
||||
|
||||
class Application_Form_AddShowStyle extends Zend_Form_SubForm
|
||||
{
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once 'customfilters/ImageSize.php';
|
||||
|
||||
class Application_Form_RegisterAirtime extends Zend_Form
|
||||
{
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once 'customvalidators/ConditionalNotEmpty.php';
|
||||
|
||||
class Application_Form_SoundcloudPreferences extends Zend_Form_SubForm
|
||||
{
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once 'customvalidators/ConditionalNotEmpty.php';
|
||||
|
||||
class Application_Form_TuneInPreferences extends Zend_Form_SubForm
|
||||
{
|
||||
public function init()
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* way zf1 Zend_Loader_PluginLoader expects it to be found. Another way around this
|
||||
* might be to rename the class and have the new name get loaded proper.
|
||||
*
|
||||
* Since this is only getting used on the GeneralPreferences form I am re-adding the
|
||||
* require_once over there to get this fixed for now.
|
||||
* Since this is only getting used in a few places I am re-adding the
|
||||
* require_once there to get this fixed for now.
|
||||
*/
|
||||
|
||||
class Zend_Filter_ImageSize implements Zend_Filter_Interface
|
||||
|
|
|
@ -1,7 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Check if a field is empty but only when specific fields have specific values
|
||||
*
|
||||
* WARNING: you need to include this file directly when using it, it clashes with the
|
||||
* way zf1 Zend_Loader_PluginLoader expects it to be found. Another way around this
|
||||
* might be to rename the class and have the new name get loaded proper.
|
||||
*
|
||||
* Since this is only getting used in a few places I am re-adding the
|
||||
* require_once there to get this fixed for now.
|
||||
*/
|
||||
class ConditionalNotEmpty extends Zend_Validate_Abstract
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue