IgnacioSM Posted February 11, 2015 Share Posted February 11, 2015 Hola, Estoy intentando añadir categorias desde el siguiente script, pero no regenera el árbol y el script no finaliza. ------------------------------------------------------------- $cat = new Category(); $cat->id_shop_default = $idTiendaOnline; $cat->id_parent = $idCategoriaPadreOnline; $cat->add(); Category::regenerateEntireNtree(); --------------------------------------------------------------- Si uso el siguiente código, regenera las categorias insertadas anteriormente, pero no la última(evidentemente). Y el script tampoco finaliza ---------------------------------------------------------------- Category::regenerateEntireNtree(); $cat = new Category(); $cat->id_shop_default = $idTiendaOnline; $cat->id_parent = $idCategoriaPadreOnline; $cat->add(); Alguna solución para, nada más añadir una categoria, pueda regenerar el árbol y ponga correctamente nleft y nright? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now