Tagged Questions
5
votes
3answers
2k views
Extending PHP static classes
I've been struggling in this area for days now, and I have reached a conclusion, but since the conclusion was not what I was looking for, before I give up, I'll try to see what other people say. Faith ...
4
votes
4answers
2k views
Overriding Doctrine_Record (sfDoctrineRecord) instance methods in Doctrine PHP Symfony
My background is in Propel, so I was hoping it would be a simple thing to override a magical getter in a Doctrine_Record (sfDoctrineRecord), but I'm getting either a Segfault or the override method is ...
1
vote
2answers
89 views
Testing a private method in an abstract class extends the other one
I'm trying to test a private method in an abstract class.
I've got three abstract classes:
abstract class AbstractClass1 extends AbstractClass2
{
private function _privateFunction()
{
...
1
vote
2answers
61 views
Extending a class with common functionality
I have three classes which basically do very similar things;
Store a record of an uploaded file.
Move and upload the file.
Set the status of the record to active or revoked.
One of the classes has ...
0
votes
2answers
196 views
MySQLI extension and native error handling
I am trying to extend the PHP5 MySQLi Library
class mysqli_ls extends mysqli
The reason I am extending the class is to add functionality and features I require that are not included by default. ...
0
votes
1answer
78 views
Extended DOMElement object loses it's properties when imported into another document
When importing an extended DOMElement object with specific properties into another DOMDocument than the one it was created with all properties are lost (I guess it doesn't actually copy the no but a ...
0
votes
0answers
99 views
Extended DOMElement object changes to another class
I'm currently working on a class to generate a flow chart using SVG. For this I use a number of classes that replace the standard PHP DOM classes.
For the elements in the chart I use a class ...
0
votes
1answer
111 views
Extending a Php class which extends another class
I have a requirement where a process can be implemented in 2 different situation. One situation would be where the start date cannot be in the past and the other would be where it can.
Currently we ...
0
votes
4answers
2k views
Extending the Template Controller in Kohana
I'm having a bit of confusion in attempting to retroactively create a new base controller for my project. If I'm not mistaken, all I need to do is create a file in application/libraries called ...