view Lib/IMPL/Web/TT/Control.pm @ 180:d1676be8afcc

Перекодировка в utf-8
author sourcer
date Fri, 30 Dec 2011 23:40:00 +0300
parents 59e5fcb59d86
children 4d0e1962161c
line wrap: on
line source

package IMPL::Web::TT::Control;

use parent qw(IMPL::Web::TT::Collection);


use IMPL::Class::Property;
use IMPL::DOM::Property qw(_dom);

__PACKAGE__->PassThroughArgs;

BEGIN {
	public property controlClass => prop_all;
	public property template => prop_all;
	public property id => prop_all;
}

my $nextId = 1;

sub CTOR {
	my ($this,%args) = @_;
	
	if ($this->document) {
		# load a template
		$this->template( $this->document->context->template($args{template})) if ($args{template} and not ref $args{template});
	}
	#$this->template($args{template}) if $args{template};

	$this->id($this->nodeName . '-' . $nextId++);
	$this->controlClass('Control') unless $this->controlClass;
}

sub Render {
	my ($this) = @_;
	
	if ($this->document) {
		if ($this->template) {
			return $this->document->context->include($this->template,{ this => $this }) ;
		} elsif ($this->document->presenter) {
			return $this->document->presenter->print($this);
		} else {
			return $this->toString().": ".$this->controlClass() . ": ".$this->path;
		}
	}
}
1;