18590 Posts in 4875 Topics by 2285 members
General Questions
SilverStripe Forums » General Questions » set flag to save and publish page
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 653 Views |
-
set flag to save and publish page

30 December 2010 at 9:52am
hello all,
i put directly with php some html code into a page on de site. (The content of a page)
But i have to go to my CMS to save and publish the page.
Is there a table where a flag is set that the page is saved and published?
So i can do it in my php file?
Thanx for help
-
Re: set flag to save and publish page

1 January 2011 at 6:17pm
Is there a table where a flag is set that the page is saved and published?
Published pages are in the SiteTree_Live table vs Draft which are in the SiteTree tables. If you have an object record you want to publish you can do like
$page->write(); // saves the record
$page->publish('Stage', 'Live'); // publishes the page
| 653 Views | ||
|
Page:
1
|
Go to Top |


