phpBB

Code Changes

File: phpbb/avatar/driver/driver_interface.php

  Unmodified   Added   Modified   Removed
Line 24Line 24
	* @return string	Name of driver.
*/
public function get_name();

	* @return string	Name of driver.
*/
public function get_name();

 

/**
* Returns the config name of the driver. To be used in accessing the CONFIG variables.
*
* @return string Config name of driver.
*/
public function get_config_name();


/**
* Get the avatar url and dimensions


/**
* Get the avatar url and dimensions

Line 110Line 117
	* @return string Avatar driver's template name
*/
public function get_template_name();

	* @return string Avatar driver's template name
*/
public function get_template_name();

 

/**
* Get the avatar driver's template name (ACP)
*
* @return string Avatar driver's template name
*/
public function get_acp_template_name();

}


}