Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3671 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3671 Rev 3775
Línea 121... Línea 121...
121
            $select->where->equalTo('uuid', $uuid);
121
            $select->where->equalTo('uuid', $uuid);
Línea 122... Línea 122...
122
            
122
            
123
            return $this->executeFetchOneObject($select, $prototype);
123
            return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 124...
-
 
124
        }
-
 
125
        
-
 
126
        /**
-
 
127
         *
-
 
128
         * @param string $uuid
-
 
129
         * @return Post
-
 
130
         */
-
 
131
        public function fetchOneByUuidAnyStatus($uuid)
-
 
132
        {
-
 
133
            $prototype = new Post();
-
 
134
            $select = $this->sql->select(self::_TABLE);
-
 
135
            $select->where->equalTo('uuid', $uuid);
-
 
136
            
-
 
137
            return $this->executeFetchOneObject($select, $prototype);
Línea 124... Línea 138...
124
        }
138
        }
125
        
139
        
126
 
140