|
NAMEToader::Templates - This handles fetching Toader templates.VERSIONVersion 1.0.0SYNOPSISFor information on the storage and rendering of entries, please see 'Documentation/Templates.pod'.METHODSnewargs hash refdir This is the directory to intiate in. toader This is a Toader object. my $foo = Toader::Templates->new( \%args ); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } dirGetThis gets Toader directory this entry is associated with.This will only error if a permanent error is set. my $dir=$foo->dirGet; if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } dirSetThis sets Toader directory this entry is associated with.One argument is taken and it is the Toader directory to set it to. $foo->dirSet($toaderDirectory); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } fill_inThis fills in a template that has been passed to it.Two arguments are taken. The first is the template name. The second is a hash reference. The returned string is the filled out template. my $rendered=$foo->fill_in( $templateName, \%hash ); if ( $foo->error ){ warn( 'Error:'.$foo->error.': '.$foo->errorString ); } fill_in_stringThis fills in a template that has been passed to it.Two arguments are required and the first is the template string to use and second it is the hash to pass to it. The returned string is the filled out template. my $rendered=$foo->fill_in_string( $templateString, \%hash ); if ( $foo->error ){ warn( 'Error:'.$foo->error.': '.$foo->errorString ); } findTemplateThis finds a specified template.One arguement is taken and it is the name of the template. A return of undef can mean either a error or it was not found. If there was an error, the method error will return true. my $templateFile=$foo->findTemplate($templateName); if( !defined( $templateFile ) ){ if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); }else{ print("Not found\n"); } }else{ print $templateFile."\n"; } getTemplateThis finds a template and then returns it.The method findTemplate will be used and if that fails the default template will be returned. One arguement is required and it is the template name. my $template=$foo->getTemplate($templateName); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } getTemplateDefaultThis finds a default template and then returns it.One arguement is required and it is the template name. my $template=$foo->getTemplate($templateName); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } listTemplatesThis lists the various templates in the directory.my @templates=$foo->listTemplates; if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } listDefaultTemplatesThis lists the various templates in the directory.my @templates=$foo->listTemplates; if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } removeThis removes a template from the current directory.One argument is required and that is the name of the template. $foo->remove( $name ); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } setThis sets a template in the current directory.Two arguments are required and those in order are the name template and the template. $foo->set( $name, $template ); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } templateInDirThis checks if the template is in the current directory.One argument is required and that is the name of the template. $foo->templateInDir( $name ); if($foo->error){ warn('Error:'.$foo->error.': '.$foo->errorString); } templateNameCheckThis makes sure checks to make sure a template name is valid.my $returned=$foo->templateNameCheck($name); if ($returned){ print "Valid\n"; } ERROR CODES1, noDirSpecifiedThe specified directory is not a Toader directory.2, isaToaderDirErroredNo directory has been specified yet.3, notAtoaderDirThe directory in question is no longer a toader directory.4, invalidTemplateNameNot a valid template name.5, openTemplateFailedUnable to open the template file.6, noDefaultTemplateUnable to fetch the default template. It does not exist.7, templateFillErroredErrored filling out the template string.8, templateStringUndefNothing specified for the template string.9, templateNameUndefTemplate name is not defined.10, notAtoaderObjThe object in question is not a Toader object.11, getVCSerroredToader->getVCS errored.12, VCSusableErroredToader::VCS->usable errored.13, noTemplateSpecifiedNothing specified for the data for a template.14, underVCSerroredToader::VCS->underVCS errored.15, VCSaddErroredToader::VCS->add errored.16, VCSdeleteErroredToader::VCS->delete errored.17, unlinkFailedFailed to unlink the template.18, notInDirThe requested template is not in this Toader dir.19, noToaderObjNo Toader object is given.AUTHORZane C. Bowers-Hadley, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-toader at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Toader>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Toader::Templates You can also look for information at:
ACKNOWLEDGEMENTSLICENSE AND COPYRIGHTCopyright 2013 Zane C. Bowers-Hadley.This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information.
Visit the GSP FreeBSD Man Page Interface. |