<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>Assigning to $this</title>

	<blurb fontsize="4em">PEAR uses this for two things mainly:</blurb>
	<list marginleft="-2em" fontsize="3.5em">
		<bullet class="pres_bullet_nr">returning errors from constructors (*$this = PEAR_Error();*)</bullet>
		<bullet class="pres_bullet_nr">driver model (*$this = new Slider('Pager');*)</bullet>
	</list>

	<break />
	<blurb fontsize="4em">This is no longer allowed in PHP 5, so the classes should be redesigned.</blurb>

	<break lines="3"/>
	<blurb fontsize="4em">Solutions (not compatible with PHP 4).</blurb>

	<list marginleft="-2em" fontsize="3.5em">
		<bullet class="pres_bullet_nr">Use Exceptions</bullet>
		<bullet class="pres_bullet_nr">driver model (*$this = new Slider('Pager');*)</bullet>
	</list>
</slide>
