Jump to content

Problemas con Category::regenerateEntireNtree()


IgnacioSM

Recommended Posts

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

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
×
×
  • Create New...