|
Revision 9128, 0.6 kB
(checked in by Carl.Vondrick, 5 years ago)
|
1.1: fixed @param phpdoc to fit specs in i18n (refs #2991)
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
interface sfI18nExtractorInterface |
|---|
| 18 |
{ |
|---|
| 19 |
|
|---|
| 20 |
* Extract i18n strings for the given content. |
|---|
| 21 |
* |
|---|
| 22 |
* @param string $content The content |
|---|
| 23 |
* |
|---|
| 24 |
* @return array An array of i18n strings |
|---|
| 25 |
*/ |
|---|
| 26 |
public function extract($content); |
|---|
| 27 |
} |
|---|
| 28 |
|
|---|