0
votes
0answers
32 views

Why Extend TCPDF Class ONLY Generate One PDF From Loop

I have a custom TCPDF class from extending the library. But, I only able to generate ONE PDF file. If I use default class/library, it generates more PDF from my loop, which I want this as result. ...
0
votes
1answer
29 views

Include vs Extend for data access

This is a design question that has irked me because deep down I know I'm doing it wrong. This is not necessarily just a PHP problem, but I'm working on a PHP project now so that's where I'm coming ...
0
votes
3answers
52 views

How does a php class determine which class to extend, given there are two class with the same name?

Given I have two User classes, one located in /model/User.php and the other located in /assets/User.php Now I want to have a class which extend the User class from /model/User.php, yet it seems that ...
0
votes
1answer
358 views

Extending Laravel core - session/payload

I'm trying to extend session/payload in Laravel. I can find documentation on how to add drivers and extend Session but it does not seem to work for Session/payload. Most people recommend creating ...
2
votes
3answers
139 views

PHP class extend

I have a problem understand how class extension work.. I'm trying to extend a class to split functions in different files to have it more organized.. But i have problems accessing variables and ...
1
vote
2answers
72 views

Extending Exception : remove message “Uncaught exception XXXX with message”

When i extend an Exception class: CustomException extends Exception(){} throw new CustomException("Houston we have a problem",1); In error: SCREAM: Error suppression ignored for Uncaught ...
0
votes
3answers
44 views

Fatal allowed memory size exceeded when using class extend

When I use a lot of class extends, I get this error: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65488 bytes) in C:\Web\private\bootstrap.php on line 5 (I made ...
0
votes
2answers
587 views

Laravel extending class

Are there any other steps required to extend a class in Laravel 3? I created application/libraries/response.php: class Response extends Laravel\Response { public static function json($data, ...
1
vote
1answer
90 views

How can I get the __construct() in MY_Controller to run? [duplicate]

Possible Duplicate: Codeigniter extending extended MY_Controller I have been fiddling with this problem for a while now, and am at the point of frustration. I am extending the controller ...
3
votes
5answers
114 views

Tell a PHP Class to always run it's constructor when it is extended

From what I understand, when a PHP Class is extended, it's constructor is not called? So in the below, the method Options_Page_Template->on_enqueue_scripts() is never actually run - class ...
1
vote
1answer
487 views

Yii Overwrite createUrl but keep parameters

I am extending and overwriting the createUrl method to make pretty URLs. Here is a snippet: public function createUrl($manager, $route, $params, $ampersand) { if($route == 'widget/view'){ ...
0
votes
2answers
138 views

PHP Unable to set a private variable in an extended class

Trying to extend the FPDF class in PHP with the following code: class Reports extends FPDF{ var $reporttitle = 'TEST'; function settitle($titlename){ ...
0
votes
0answers
110 views

Dynamic bundle extending with Symfony

I need to create a website with Synfony with core functionality and multiple additions for specific clients. From here, nothing too complicated : every client has its own Bundle that extends the core ...
2
votes
3answers
62 views

php class and variables

Say I have a class class person { public static function get_pk(){ return self::$primary_key; } } and an extended class class user extends person { protected $primary_key = ...
0
votes
1answer
25 views

What's more correct parent::method() or $this->method() in a child class PHP

What's a more correct way to call a parent classes functions? parent:: or $this-> ? class base{ public function get_x(){ return 'x'; } } class child extends base{ ...
3
votes
1answer
171 views

How do I declare a static variable in a PHP class but define it in a class which extends the base class?

I'm have a DatabaseObject Class that has select, insert, update and delete methods defined. The purpose of the class is to represent a subset of rows in my MySQL database as a PHP object. The ...
0
votes
4answers
70 views

Organizing/extending classes in a PHP project

I'm working on a PHP project with a couple simple classes. I'm working on making my classes more complex, but I also wanted to start using classes for additional things like managing users, config ...
1
vote
3answers
109 views

Why would you extend a class rather than just adding a new method to the original class?

I finally had my Ah-ha moment when it came to classes in OOP. I've been struggling to get my mind around the idea. Now that I'm starting to get it I was wondering what the purpose of extending a class ...
0
votes
0answers
306 views

Advice extending PDO with basic CRUD functions

Just recently I started rewriting a previously procedurally written website by myself, I chose PDO as the wrapper since I'm also getting used to the OOP way of doing things. I would like some advice ...
3
votes
1answer
104 views

PHP : Does extending class need another 'use' to call namespace?

I'm wondering whether in the situation where I'm extending a class that has already 'use' keyword above it to use specific namespace - do I need to add another 'use' above the inheriting class to use ...
1
vote
4answers
756 views

Extending CI_Controller

All I'm trying to do is something fairly simple : Create a class (let's say brandNewClass - NOT MY_Controller) which extends CI_Controller Create other controllers which extend brandNewClass E.g. ...
0
votes
5answers
43 views

PHP Object Oriented Issue On My Code

Hi please have a look on bellow code. <?php class A { public $name; public function getName() { return $this->name; } } class B extends A { public function ...
0
votes
1answer
824 views

Using Smarty 3, Code Igniter 2, and HMVC together with smarty's inheritance?

I am using Code Igniter, The HMVC library, and Smarty with this library. Smarty is working fine by default, however if I try to use smarty's inheritance feature ( {extends file="master.tpl"}) then we ...
5
votes
1answer
1k views

Extending Magento Shopping Cart

I need to extend the Magento shopping cart to include an extra step for a store locator. I understand that I need to overwrite the core OnePage controller (Mage_Checkout_OnepageController) and blocks ...
1
vote
1answer
60 views

Error when Extending a class

Im having problems extending a Class. This is what I was trying to do: class Core { protected $db; public function __construct() { $this->set_db_class(); } ...
1
vote
1answer
234 views

PHP - Proper way to extend class

I am currently working on a mini 'framework' and I am having some difficulties. I'm attempting this in order to strengthen my understanding of basic concepts utilized in most MVC's (At least from what ...
1
vote
2answers
242 views

How to extend Facebook access_token automatically to keep access after 60 days?

Ok, so offline_access has been deprecated. So now, I am able to get 60 days access tokens but is there any way to extend this without user interaction? We have a tool which you can compare a bit with ...
0
votes
3answers
260 views

How to extend a PHP class within the class

I'm rather new to OOP and have a question about how to best deal with using one class name, but then adding functionality to that class internally based on a parameter passed. Basic story is I have ...
1
vote
1answer
171 views

How to extend CodeIgniter cache adapter?

How do I extend CodeIgniter cache adapter? I tried with: MY_Cache_file extends CI_Cache_file{ ... } MY_Cache_apc extends CI_Cache_apc{ ... } but doesn't seem to work... Is it possible?
1
vote
5answers
491 views

Can't extend my Controller

I am trying to write an extension to my Controller class. The problem is I can't seem to figure out how.. I have the following class named test in which there is one function which simply returns ...
0
votes
2answers
77 views

Working with extended classes in PHP

I have 2 classes looking like this: class db { protected $db; function __construct() { $this->connect(); } protected function connect() { $this->db = new ...
0
votes
2answers
112 views

Extend variable from one function to another

I'm having an image upload function I did create for few weeks ago - it has an variable called $newname, which contains the path and file. I'm then using the imageupload() function in another ...
0
votes
6answers
650 views

check if abstract class exists

I'm writing a class to check all my dependencies. One of those dependencies are inherited classes. //File: A.php (For this example, file doesn't exist) abstract class A{ } //File: B.php class B ...
1
vote
3answers
3k views

CodeIgniter CI_Controller not found

So basically, the below is the code I have right now: class MY_Log extends CI_Log { /** * Variable storing the CodeIgniter instance. * * @access private * @since v0.1.0.0 */ ...
2
votes
3answers
301 views

Can I Extend a Built-In PHP Function?

Long story short I'm working with a legacy codebase that makes heavy use of PHP's built-in call_user_func_array function. I'm trying to get it to work with PHP 5.3 (upgrading from 5.2), but have run ...
13
votes
5answers
439 views

get parent extends class in php

i have the oop php code: class a { // with propertie and functions } class b extends a { public function test() { echo __CLASS__; // this is b // parent::__CLASS__ // error } } $b = new b(); ...
0
votes
2answers
137 views

php class extended multiple times

After spending half an hour to find a proper, self-explaining title for this question, I finally gave up. Apologies for it, I'm not a native English speaker. Anyways, the question is about using a ...
3
votes
3answers
72 views

PHP inheritance question regarding extended classes

If I got two classes extending a 3rd classs will the content of the 3rd class be instantiated twice when instantiating both, the 1st and 2nd class? Example: class class1 extends class3{} class ...
2
votes
5answers
77 views

Extending a class in PHP

class A{ private static $instance; public static function getInstance(){ if(!(self::$instance instanceof self)) self::$instance = new self(); return self::$instance; } public ...
2
votes
1answer
333 views

Extend class methods in PHP

I am doing a custom CMS and I have built my base content class like this: class Content { public $title; public $description; public $id; static function save() { $q = "[INSERT THE ...
1
vote
4answers
101 views

Extending a PHP class

Just a quick question really. I am re-writing a site and I am converting it all to OOP and putting it all into templates. I have multiple classes, but I want to extend one of them from a separate ...
0
votes
2answers
546 views

Help extending class used in Wordpress plugin

First, a proviso - I'm a designer not a dev, so please be gentle ;) I'm trying to tweak a Wordpress plugin by extending a class. In the class in a bit of conditional if/elseif-ing the code calls one ...
0
votes
1answer
42 views

How to match new variables against default variables in a class?

In jQuery there is $.extend() function. That basically works like matching default settings with input settings. Well, I want to use similar technique in PHP, but it seems, that there is no similar ...
1
vote
2answers
73 views

Loading Class Extensions from Inside the Parent class PHP

I am trying to load an extension of a php class by itself. I don't understand why it isn't loaded. Is it possible to load class extensions by themselves? Here is a code example of what exactly I ...
2
votes
3answers
767 views

How to pass variables between classes in PHP without extending

So, I've got my setup like this: class System extends mysqli{ function __construct(){ //user variables such as $this->username are returned here } } $sys = new System(); class ...
2
votes
3answers
372 views

how to “inject” built-in php functions

How can i modify returning value of built-in php function without creating new function with another name and renaming all of used functions with previous name to new one? e.g. function time() { ...
0
votes
1answer
282 views

Extend MySQLi Class to EXPLAIN SQL queries on page

how can I extend the MySQLi class to explain all SQL queries on a given page? Thanks.
0
votes
1answer
898 views

Extending PHP Smarty Singleton Class

I'm not really sure how to ask this question. Basically I am trying to make my view object a singleton extended from the Smarty object. I then want to be able to extend off of the view object to my ...
0
votes
1answer
80 views

Combine static var with parent's

This is what I'd like to be able to do: class Test { public static $test = 'boo'; } class Two extends Test { public static $test = parent::$test.'hoo'; } // Two::$test == 'boohoo' Well, ...
6
votes
1answer
2k views

Extend Magento's EAV Attribute Model

I would like to add a new attribute to Magento's EAV attribute model. Is this possible? I know that Magento lets you extend models using static fields (which are on the entity table), but I would ...

1 2