uc_order_plugin_row_invoice.inc 400 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Contains the node view row style plugin.
  5. */
  6. /**
  7. * Plugin which performs a node_view on the resulting object.
  8. *
  9. * Most of the code on this object is in the theme function.
  10. */
  11. class uc_order_plugin_row_invoice extends views_plugin_row {
  12. // Basic properties that let the row style follow relationships.
  13. var $base_table = 'uc_orders';
  14. var $base_field = 'order_id';
  15. }