Hi
I thought I had Views figured out but then I upgraded to RC3 and upgrade the Views module along with it. Now my Views which used to work just give me a "Page not found" error. I did update the database for the Views module and I did enable views_ui which wasn't around with the version I was using. I think that this is all fine and a simple view I created does work (using Node filters etc.).
I have a custom node type which has a field containing a uid, its the id of a user who had to approve something. I want to list all the nodes where the current user is the person who approved them. I have been through this before but I can't figure it out. I read the documentation and I think I am doing it correctly although its clear I am not).
Here is my code:
<?php
function fhsstadmin_views_tables() {
$tables['fhsstadmin_mediation'] = array(
"name" => "fhsstadmin_mediation",
"join" => array(
"left" => array(
"table" => "node",
"field" => "nid"
),
"right" => array(
"field" => "nid"
),
),
"fields" => array(
"mediatoruid" => array(
'name' => "Mediator ID",
'sortable' => true,
'mediatoruid' => "mediatoruid",
'addlfields' => array("mediatoruid")
),
"evaluid" => array(
'name' => "Mediator Eval ID",
'sortable' => true,
'evaluid' => "evaluid",