Jump to content

Recommended Posts

Posted

I’m trying to set the name field on a page through the API. Since this field has no setLanguageValue method, I’m a bit lost on what to try. Documentation doesn’t talk about this exception.

Posted

Well, after a lot of fiddling, looking up the database and too much var_dump’ing, here’s the answer:

if ($language->name == "default") {
    $page->name = $value;
} else {
    $page->setFieldValue("name".$language->id, $value);
}
 
Where $language is a correctly queried language.
  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...