Skip to content

Instantly share code, notes, and snippets.

@govaniso
Created October 23, 2012 06:18
Show Gist options
  • Save govaniso/3937164 to your computer and use it in GitHub Desktop.
Save govaniso/3937164 to your computer and use it in GitHub Desktop.
Controlador para el servicio de productos
<?php
Load::model("Productos");
class ProductosController extends ServicesController {
public function getFormaciones($idPersonal) {
$Productos = new Productos();
echo $Productos->getProductos($idPersonal)->to_json();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment