Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usuń przedmiot #16

Open
janek109 opened this issue Jan 8, 2013 · 0 comments
Open

Usuń przedmiot #16

janek109 opened this issue Jan 8, 2013 · 0 comments
Assignees
Labels

Comments

@janek109
Copy link
Member

janek109 commented Jan 8, 2013

Prosta akcja która przyjmuje na adresie /subject/removesubject?id=[idprzedmiotu] i usuwa go z bazy tzn zaznacza że jest usunięty odpowiednim statusem.

{Projekt}/application/view/subject/removesubject.phtml właściwie tylko prosty form z pytaniem czy usunąć przedmiot o tytule: "Przykładowy Tytuł"

{Projekt}/application/forms/ <- dodajesz forma z ukrytym polem idprzedmiotu i przyciskiem submit "Usuń przedmiot". Pamiętaj aby form był słany postem: $this->setMethod('post'); //(w klasie forma)

{Projekt}/application/controller/SubjectController.php <- dodajesz akcje removesubject która wyciąga z bazy przedmiot o danym id i wysyła jego tytuł na widok $this->view->subject = "Przykładowy Tytuł" gdzie masz formularz
w akcji również tworzysz formularz.

po sprawdzeniu czy poszedł post
if ($this->getRequest()->isPost()) {}

sprawdzasz czy osoba zalogowana
// tak spradzasz czy ktoś jest lognięty.
$hasIdentity = Zend_Auth::getInstance()->hasIdentity()
if ($hasIdentity) {
}

// w tej kasie są role do porównań
class Application_Model_Uzytkownicy

i czy może usunąć dany przedmiot jak tak to spoko zaznaczasz temat w bazie jako usunięty.

@ghost ghost assigned Robson0102 Jan 8, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants