Default Project Properties in PHP
Contents
[
Hide
Show
]Aspose.Tasks - Default Project Properties
To get Default Project Properties using Aspose.Tasks Java for PHP, call get_default_project_properties method of ProjectProperties module. Here you can see example code.
PHP Code
1$project = new Project('Sample.xml');
2$prj = new Prj();
3print "Project Version : " . (string)$project->get($prj->SAVE_VERSION);
4print "\nNew Task Default Start: ". (string)$project->get($prj->DEFAULT_START_TIME);
5print "\nNew Task Default Type: ". (string)$project->get($prj->DEFAULT_TASK_TYPE);
6print "\nResource Default Standard Rate: ". (string)$project->get($prj->DEFAULT_STANDARD_RATE);
7print "\nResource Default Overtime Rate: ". (string)$project->get($prj->DEFAULT_OVERTIME_RATE);
8print "\nDefault Task EV Method: ". (string)$project->get($prj->DEFAULT_TASK_EV_METHOD);
9print "\nDefault Cost Accrual: ". (string)$project->get($prj->DEFAULT_FIXED_COST_ACCRUAL);
Download Running Code
Download Default Project Properties (Aspose.Tasks) from any of the below mentioned social coding sites: