21282 Posts in 5730 Topics by 2601 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 709 Views |
-
batch publishing translated pages

28 September 2010 at 2:46am
Hello
I'v been trying to find a solution in the forums to my problem but I coud not.
So here is my question :
When you try to batch publish pages in a translated language, you get an error this a major prob to me because I have 5 languages to deal with.
Is there a solution if so please point it to me
Thanks
T
-
Re: batch publishing translated pages

28 September 2010 at 3:59am
Hey T,
Assuming you can trigger the script it is easy to put a page to live within PHP... So as long as you can get the pages easily...
$dosPage = DataObject::get('Page',<SOME WHERE CLAUSE HERE>);
foreach($dosPage as $doPage)
{
$doPage->writeToStage('Stage');
$doPage->publish("Stage", "Live");
}I'd imagine the where clause would be something like "Locale != '<ORIGINAL LOCALE>'"
Hope this helps!
| 709 Views | ||
|
Page:
1
|
Go to Top |


