|
Revision 11783, 0.6 kB
(checked in by fabien, 4 years ago)
|
[1.2] added helper management in sfApplicationConfiguration to take into account the enabled plugins and deprecated sfLoader class
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id Rev Date
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
function use_helper() |
|---|
| 21 |
{ |
|---|
| 22 |
$context = sfContext::getInstance(); |
|---|
| 23 |
|
|---|
| 24 |
$context->getConfiguration()->loadHelpers(func_get_args(), $context->getModuleName()); |
|---|
| 25 |
} |
|---|
| 26 |
|
|---|