Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8799133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:14:50+00:00 2026-06-14T00:14:50+00:00

Suppose I have this models User.class.php userTable.class.php I want to create a method to

  • 0

Suppose I have this models

  • User.class.php
  • userTable.class.php

I want to create a method to update the user

Action

class userActions extends sfActions {

public function executeUpdateUser(sfWebRequest $request) {
     $user_id = $request->getParameter('id');
     // here i want to call function to update the user 
     // updateUser($id);
}

Where should I put this function updateUser($id) ?

ON user.class.php –> And call it like that User::updateUser($id);

OR ON userTable.class.php –> And call it like that Doctrine_Core::getTable('User')->updateUser($id);

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T00:14:51+00:00Added an answer on June 14, 2026 at 12:14 am

    I’d do it this way :

    $user = Doctrine_Core::getTable('User')->find($user_id);
    $user->updateWithData($data); // ::update() is already an existing method
    $user->save();
    

    or

    $user = Doctrine_Core::getTable('User')->find($user_id);
    $user->updateWithDataAndSave($data);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have this model (not real code): class Message(models.Model): content = models.CharField(...) mentions
Suppose I have something like this in my models.py: class Hipster(models.Model): name = CharField(max_length=50)
Suppose I have this class: class MyClass(object): def uiFunc(self, MainWindow): self.attr1 = foo self.attr2
Suppose I have this feature branch foo. Now I want to merge it back
Suppose I have this html markup: <div id=wrapper> <pre class=highlight> $(function(){ // hide all
I've got some models set up like this: class AppGroup(models.Model): users = models.ManyToManyField(User) class
Suppose I have this model: public class ViewModel { [Required] public string UserInput {
I have a model like below: class StaffProfile(models.Model): user = models.ForeignKey(User) maas = models.FloatField()
Suppose I have a domain model like this: public class MyDomainEntity { public double
I have a user model like this: class User < ActiveRecord::Base validates :password, :presence

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.