Jump to content

Call method in Class B from within Class A


rondog

Recommended Posts

I have two classes:

 

## Admin.php

<?php
class Admin
{
public function __construct()
{
	include("Config.php");
}

/**
* deletes a client
* @returns true or false
*/
function deleteClient($id)
{
	return mysql_query("DELETE FROM usernames WHERE id = '$id'");
}
}
?>

 

## Projects.php

<?php
class Projects
{
public function __construct()
{
	include("Config.php");
	$this->admin = $admin;
	$this->dataFolder = $dataFolder;
}

/**
* Deletes a project
* @returns true or false
*/
function deleteProject($id)
{
	$root 		= $_SERVER['DOCUMENT_ROOT'];
	$theDir 	= $root . $this->dataFolder;
	$sql 		= mysql_query("SELECT * FROM projectData WHERE proj_id = '$id'");
	while ($row = mysql_fetch_array($sql))
	{
		$mainFile = $row['path'];
		$thumb = $row['thumbnail'];
		if ($thumb != 'null')
		{
			unlink($theDir . "/" . substr($thumb,13));
		}
		unlink($theDir . "/" . substr($mainFile,13));
	}
	$delete = mysql_query("DELETE FROM projectData WHERE proj_id = '$id'");
	$getDir = mysql_query("SELECT proj_path FROM projects WHERE id = '$id'");
	$res = mysql_fetch_array($getDir);
	rmdir($theDir . "/" . $res['proj_path']);
	return mysql_query("DELETE FROM projects WHERE id = '$id'");
}
}
?>

 

How can I call deleteProject() from within Admin.php?

Link to comment
Share on other sites

Like you would call any other class methods...

 

You could just include the Projects.php file and call it Projects::deleteProject()...

 

What i normally do is define a variable and assign the object to it on construction... then call it like: $this->var->method(). e.g.

Class something
{
  protected $_projects;
  public function __construct()
{
   require_once('Projects.php');
   $this->_projects = new Projects;
}
public somefunc()
{
  $this->_projects->method();
}
}

 

But then again i usually have similar classes on a same file.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.