Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 15.15 KB | None | 0 0
  1.  
  2.         /** @Column(name="view_inventory", type="boolean") **/
  3.         protected $view_inventory
  4.  
  5.         /** @Column(name="edit_inventory", type="boolean") **/
  6.         protected $edit_inventory
  7.  
  8.         /** @Column(name="delete_inventory", type="boolean") **/
  9.         protected $delete_inventory
  10.  
  11.         /** @Column(name="create_inventory", type="boolean") **/
  12.         protected $create_inventory
  13.  
  14.         /** @Column(name="save_inventory", type="boolean") **/
  15.         protected $save_inventory
  16.  
  17.         /** @Column(name="view_software", type="boolean") **/
  18.         protected $view_software
  19.  
  20.         /** @Column(name="edit_software", type="boolean") **/
  21.         protected $edit_software
  22.  
  23.         /** @Column(name="delete_software", type="boolean") **/
  24.         protected $delete_software
  25.  
  26.         /** @Column(name="create_software", type="boolean") **/
  27.         protected $create_software
  28.  
  29.         /** @Column(name="save_software", type="boolean") **/
  30.         protected $save_software
  31.  
  32.         /** @Column(name="view_column", type="boolean") **/
  33.         protected $view_column
  34.  
  35.         /** @Column(name="status_column", type="boolean") **/
  36.         protected $status_column
  37.  
  38.         /** @Column(name="mode_column", type="boolean") **/
  39.         protected $mode_column
  40.  
  41.         /** @Column(name="edit_column", type="boolean") **/
  42.         protected $edit_column
  43.  
  44.         /** @Column(name="delete_column", type="boolean") **/
  45.         protected $delete_column
  46.  
  47.         /** @Column(name="create_column", type="boolean") **/
  48.         protected $create_column
  49.  
  50.         /** @Column(name="save_column", type="boolean") **/
  51.         protected $save_column
  52.  
  53.         /** @Column(name="view_place", type="boolean") **/
  54.         protected $view_place
  55.  
  56.         /** @Column(name="edit_place", type="boolean") **/
  57.         protected $edit_place
  58.  
  59.         /** @Column(name="delete_place", type="boolean") **/
  60.         protected $delete_place
  61.  
  62.         /** @Column(name="create_place", type="boolean") **/
  63.         protected $create_place
  64.  
  65.         /** @Column(name="save_place", type="boolean") **/
  66.         protected $save_place
  67.  
  68.         /** @Column(name="view_setting", type="boolean") **/
  69.         protected $view_setting
  70.  
  71.         /** @Column(name="save_setting", type="boolean") **/
  72.         protected $save_setting
  73.  
  74.         /** @Column(name="view_helpdesk_all", type="boolean") **/
  75.         protected $view_helpdesk_all
  76.  
  77.         /** @Column(name="edit_helpdesk", type="boolean") **/
  78.         protected $edit_helpdesk
  79.  
  80.         /** @Column(name="save_helpdesk", type="boolean") **/
  81.         protected $save_helpdesk
  82.  
  83.         /** @Column(name="details_helpdesk", type="boolean") **/
  84.         protected $details_helpdesk
  85.  
  86.         /** @Column(name="changeStatus_helpdesk", type="boolean") **/
  87.         protected $changeStatus_helpdesk
  88.  
  89.         /** @Column(name="changePriority_helpdesk", type="boolean") **/
  90.         protected $changePriority_helpdesk
  91.  
  92.         /** @Column(name="comment_helpdesk", type="boolean") **/
  93.         protected $comment_helpdesk
  94.  
  95.         /** @Column(name="view_ticket-creation", type="boolean") **/
  96.         protected $view_ticket-creation
  97.  
  98.         /** @Column(name="create_ticket-creation", type="boolean") **/
  99.         protected $create_ticket-creation
  100.  
  101.         /** @Column(name="view_statuses", type="boolean") **/
  102.         protected $view_statuses
  103.  
  104.         /** @Column(name="delete_statuses", type="boolean") **/
  105.         protected $delete_statuses
  106.  
  107.         /** @Column(name="edit_statuses", type="boolean") **/
  108.         protected $edit_statuses
  109.  
  110.         /** @Column(name="save_statuses", type="boolean") **/
  111.         protected $save_statuses
  112.  
  113.         /** @Column(name="create_statuses", type="boolean") **/
  114.         protected $create_statuses
  115.  
  116.         /** @Column(name="view_reports", type="boolean") **/
  117.         protected $view_reports
  118.  
  119.         /** @Column(name="show_reports", type="boolean") **/
  120.         protected $show_reports
  121.  
  122.         /** @Column(name="generate_reports", type="boolean") **/
  123.         protected $generate_reports
  124.  
  125.         /** @Column(name="view_collective-reports", type="boolean") **/
  126.         protected $view_collective-reports
  127.  
  128.         /** @Column(name="show_collective-reports", type="boolean") **/
  129.         protected $show_collective-reports
  130.  
  131.         /** @Column(name="generate_collective-reports", type="boolean") **/
  132.         protected $generate_collective-reports
  133.  
  134.         /** @Column(name="view_backups", type="boolean") **/
  135.         protected $view_backups
  136.  
  137.         /** @Column(name="-", type="boolean") **/
  138.         protected $-
  139.  
  140.         /** @Column(name="reports", type="boolean") **/
  141.         protected $reports
  142.  
  143.         /** @Column(name="show_backups-reports", type="boolean") **/
  144.         protected $show_backups-reports
  145.  
  146.         /** @Column(name="generate_backups-reports", type="boolean") **/
  147.         protected $generate_backups-reports
  148.  
  149.  
  150. /**
  151. * @param $abc
  152. */
  153. public function setViewInventory($abc)
  154. {
  155.     $this->@ViewInventory = $abc;
  156. }
  157.  
  158. /**
  159. * @return boolean
  160. */
  161. public function getViewInventory()
  162. {
  163.     return $this->ViewInventory;
  164. }
  165.  
  166. /**
  167. * @param $abc
  168. */
  169. public function setEditInventory($abc)
  170. {
  171.     $this->@EditInventory = $abc;
  172. }
  173.  
  174. /**
  175. * @return boolean
  176. */
  177. public function getEditInventory()
  178. {
  179.     return $this->EditInventory;
  180. }
  181.  
  182. /**
  183. * @param $abc
  184. */
  185. public function setDeleteInventory($abc)
  186. {
  187.     $this->@DeleteInventory = $abc;
  188. }
  189.  
  190. /**
  191. * @return boolean
  192. */
  193. public function getDeleteInventory()
  194. {
  195.     return $this->DeleteInventory;
  196. }
  197.  
  198. /**
  199. * @param $abc
  200. */
  201. public function setCreateInventory($abc)
  202. {
  203.     $this->@CreateInventory = $abc;
  204. }
  205.  
  206. /**
  207. * @return boolean
  208. */
  209. public function getCreateInventory()
  210. {
  211.     return $this->CreateInventory;
  212. }
  213.  
  214. /**
  215. * @param $abc
  216. */
  217. public function setSaveInventory($abc)
  218. {
  219.     $this->@SaveInventory = $abc;
  220. }
  221.  
  222. /**
  223. * @return boolean
  224. */
  225. public function getSaveInventory()
  226. {
  227.     return $this->SaveInventory;
  228. }
  229.  
  230. /**
  231. * @param $abc
  232. */
  233. public function setViewSoftware($abc)
  234. {
  235.     $this->@ViewSoftware = $abc;
  236. }
  237.  
  238. /**
  239. * @return boolean
  240. */
  241. public function getViewSoftware()
  242. {
  243.     return $this->ViewSoftware;
  244. }
  245.  
  246. /**
  247. * @param $abc
  248. */
  249. public function setEditSoftware($abc)
  250. {
  251.     $this->@EditSoftware = $abc;
  252. }
  253.  
  254. /**
  255. * @return boolean
  256. */
  257. public function getEditSoftware()
  258. {
  259.     return $this->EditSoftware;
  260. }
  261.  
  262. /**
  263. * @param $abc
  264. */
  265. public function setDeleteSoftware($abc)
  266. {
  267.     $this->@DeleteSoftware = $abc;
  268. }
  269.  
  270. /**
  271. * @return boolean
  272. */
  273. public function getDeleteSoftware()
  274. {
  275.     return $this->DeleteSoftware;
  276. }
  277.  
  278. /**
  279. * @param $abc
  280. */
  281. public function setCreateSoftware($abc)
  282. {
  283.     $this->@CreateSoftware = $abc;
  284. }
  285.  
  286. /**
  287. * @return boolean
  288. */
  289. public function getCreateSoftware()
  290. {
  291.     return $this->CreateSoftware;
  292. }
  293.  
  294. /**
  295. * @param $abc
  296. */
  297. public function setSaveSoftware($abc)
  298. {
  299.     $this->@SaveSoftware = $abc;
  300. }
  301.  
  302. /**
  303. * @return boolean
  304. */
  305. public function getSaveSoftware()
  306. {
  307.     return $this->SaveSoftware;
  308. }
  309.  
  310. /**
  311. * @param $abc
  312. */
  313. public function setViewColumn($abc)
  314. {
  315.     $this->@ViewColumn = $abc;
  316. }
  317.  
  318. /**
  319. * @return boolean
  320. */
  321. public function getViewColumn()
  322. {
  323.     return $this->ViewColumn;
  324. }
  325.  
  326. /**
  327. * @param $abc
  328. */
  329. public function setStatusColumn($abc)
  330. {
  331.     $this->@StatusColumn = $abc;
  332. }
  333.  
  334. /**
  335. * @return boolean
  336. */
  337. public function getStatusColumn()
  338. {
  339.     return $this->StatusColumn;
  340. }
  341.  
  342. /**
  343. * @param $abc
  344. */
  345. public function setModeColumn($abc)
  346. {
  347.     $this->@ModeColumn = $abc;
  348. }
  349.  
  350. /**
  351. * @return boolean
  352. */
  353. public function getModeColumn()
  354. {
  355.     return $this->ModeColumn;
  356. }
  357.  
  358. /**
  359. * @param $abc
  360. */
  361. public function setEditColumn($abc)
  362. {
  363.     $this->@EditColumn = $abc;
  364. }
  365.  
  366. /**
  367. * @return boolean
  368. */
  369. public function getEditColumn()
  370. {
  371.     return $this->EditColumn;
  372. }
  373.  
  374. /**
  375. * @param $abc
  376. */
  377. public function setDeleteColumn($abc)
  378. {
  379.     $this->@DeleteColumn = $abc;
  380. }
  381.  
  382. /**
  383. * @return boolean
  384. */
  385. public function getDeleteColumn()
  386. {
  387.     return $this->DeleteColumn;
  388. }
  389.  
  390. /**
  391. * @param $abc
  392. */
  393. public function setCreateColumn($abc)
  394. {
  395.     $this->@CreateColumn = $abc;
  396. }
  397.  
  398. /**
  399. * @return boolean
  400. */
  401. public function getCreateColumn()
  402. {
  403.     return $this->CreateColumn;
  404. }
  405.  
  406. /**
  407. * @param $abc
  408. */
  409. public function setSaveColumn($abc)
  410. {
  411.     $this->@SaveColumn = $abc;
  412. }
  413.  
  414. /**
  415. * @return boolean
  416. */
  417. public function getSaveColumn()
  418. {
  419.     return $this->SaveColumn;
  420. }
  421.  
  422. /**
  423. * @param $abc
  424. */
  425. public function setViewPlace($abc)
  426. {
  427.     $this->@ViewPlace = $abc;
  428. }
  429.  
  430. /**
  431. * @return boolean
  432. */
  433. public function getViewPlace()
  434. {
  435.     return $this->ViewPlace;
  436. }
  437.  
  438. /**
  439. * @param $abc
  440. */
  441. public function setEditPlace($abc)
  442. {
  443.     $this->@EditPlace = $abc;
  444. }
  445.  
  446. /**
  447. * @return boolean
  448. */
  449. public function getEditPlace()
  450. {
  451.     return $this->EditPlace;
  452. }
  453.  
  454. /**
  455. * @param $abc
  456. */
  457. public function setDeletePlace($abc)
  458. {
  459.     $this->@DeletePlace = $abc;
  460. }
  461.  
  462. /**
  463. * @return boolean
  464. */
  465. public function getDeletePlace()
  466. {
  467.     return $this->DeletePlace;
  468. }
  469.  
  470. /**
  471. * @param $abc
  472. */
  473. public function setCreatePlace($abc)
  474. {
  475.     $this->@CreatePlace = $abc;
  476. }
  477.  
  478. /**
  479. * @return boolean
  480. */
  481. public function getCreatePlace()
  482. {
  483.     return $this->CreatePlace;
  484. }
  485.  
  486. /**
  487. * @param $abc
  488. */
  489. public function setSavePlace($abc)
  490. {
  491.     $this->@SavePlace = $abc;
  492. }
  493.  
  494. /**
  495. * @return boolean
  496. */
  497. public function getSavePlace()
  498. {
  499.     return $this->SavePlace;
  500. }
  501.  
  502. /**
  503. * @param $abc
  504. */
  505. public function setViewSetting($abc)
  506. {
  507.     $this->@ViewSetting = $abc;
  508. }
  509.  
  510. /**
  511. * @return boolean
  512. */
  513. public function getViewSetting()
  514. {
  515.     return $this->ViewSetting;
  516. }
  517.  
  518. /**
  519. * @param $abc
  520. */
  521. public function setSaveSetting($abc)
  522. {
  523.     $this->@SaveSetting = $abc;
  524. }
  525.  
  526. /**
  527. * @return boolean
  528. */
  529. public function getSaveSetting()
  530. {
  531.     return $this->SaveSetting;
  532. }
  533.  
  534. /**
  535. * @param $abc
  536. */
  537. public function setViewHelpdeskAll($abc)
  538. {
  539.     $this->@ViewHelpdeskAll = $abc;
  540. }
  541.  
  542. /**
  543. * @return boolean
  544. */
  545. public function getViewHelpdeskAll()
  546. {
  547.     return $this->ViewHelpdeskAll;
  548. }
  549.  
  550. /**
  551. * @param $abc
  552. */
  553. public function setEditHelpdesk($abc)
  554. {
  555.     $this->@EditHelpdesk = $abc;
  556. }
  557.  
  558. /**
  559. * @return boolean
  560. */
  561. public function getEditHelpdesk()
  562. {
  563.     return $this->EditHelpdesk;
  564. }
  565.  
  566. /**
  567. * @param $abc
  568. */
  569. public function setSaveHelpdesk($abc)
  570. {
  571.     $this->@SaveHelpdesk = $abc;
  572. }
  573.  
  574. /**
  575. * @return boolean
  576. */
  577. public function getSaveHelpdesk()
  578. {
  579.     return $this->SaveHelpdesk;
  580. }
  581.  
  582. /**
  583. * @param $abc
  584. */
  585. public function setDetailsHelpdesk($abc)
  586. {
  587.     $this->@DetailsHelpdesk = $abc;
  588. }
  589.  
  590. /**
  591. * @return boolean
  592. */
  593. public function getDetailsHelpdesk()
  594. {
  595.     return $this->DetailsHelpdesk;
  596. }
  597.  
  598. /**
  599. * @param $abc
  600. */
  601. public function setChangestatusHelpdesk($abc)
  602. {
  603.     $this->@ChangestatusHelpdesk = $abc;
  604. }
  605.  
  606. /**
  607. * @return boolean
  608. */
  609. public function getChangestatusHelpdesk()
  610. {
  611.     return $this->ChangestatusHelpdesk;
  612. }
  613.  
  614. /**
  615. * @param $abc
  616. */
  617. public function setChangepriorityHelpdesk($abc)
  618. {
  619.     $this->@ChangepriorityHelpdesk = $abc;
  620. }
  621.  
  622. /**
  623. * @return boolean
  624. */
  625. public function getChangepriorityHelpdesk()
  626. {
  627.     return $this->ChangepriorityHelpdesk;
  628. }
  629.  
  630. /**
  631. * @param $abc
  632. */
  633. public function setCommentHelpdesk($abc)
  634. {
  635.     $this->@CommentHelpdesk = $abc;
  636. }
  637.  
  638. /**
  639. * @return boolean
  640. */
  641. public function getCommentHelpdesk()
  642. {
  643.     return $this->CommentHelpdesk;
  644. }
  645.  
  646. /**
  647. * @param $abc
  648. */
  649. public function setViewTicketCreation($abc)
  650. {
  651.     $this->@ViewTicketCreation = $abc;
  652. }
  653.  
  654. /**
  655. * @return boolean
  656. */
  657. public function getViewTicketCreation()
  658. {
  659.     return $this->ViewTicketCreation;
  660. }
  661.  
  662. /**
  663. * @param $abc
  664. */
  665. public function setCreateTicketCreation($abc)
  666. {
  667.     $this->@CreateTicketCreation = $abc;
  668. }
  669.  
  670. /**
  671. * @return boolean
  672. */
  673. public function getCreateTicketCreation()
  674. {
  675.     return $this->CreateTicketCreation;
  676. }
  677.  
  678. /**
  679. * @param $abc
  680. */
  681. public function setViewStatuses($abc)
  682. {
  683.     $this->@ViewStatuses = $abc;
  684. }
  685.  
  686. /**
  687. * @return boolean
  688. */
  689. public function getViewStatuses()
  690. {
  691.     return $this->ViewStatuses;
  692. }
  693.  
  694. /**
  695. * @param $abc
  696. */
  697. public function setDeleteStatuses($abc)
  698. {
  699.     $this->@DeleteStatuses = $abc;
  700. }
  701.  
  702. /**
  703. * @return boolean
  704. */
  705. public function getDeleteStatuses()
  706. {
  707.     return $this->DeleteStatuses;
  708. }
  709.  
  710. /**
  711. * @param $abc
  712. */
  713. public function setEditStatuses($abc)
  714. {
  715.     $this->@EditStatuses = $abc;
  716. }
  717.  
  718. /**
  719. * @return boolean
  720. */
  721. public function getEditStatuses()
  722. {
  723.     return $this->EditStatuses;
  724. }
  725.  
  726. /**
  727. * @param $abc
  728. */
  729. public function setSaveStatuses($abc)
  730. {
  731.     $this->@SaveStatuses = $abc;
  732. }
  733.  
  734. /**
  735. * @return boolean
  736. */
  737. public function getSaveStatuses()
  738. {
  739.     return $this->SaveStatuses;
  740. }
  741.  
  742. /**
  743. * @param $abc
  744. */
  745. public function setCreateStatuses($abc)
  746. {
  747.     $this->@CreateStatuses = $abc;
  748. }
  749.  
  750. /**
  751. * @return boolean
  752. */
  753. public function getCreateStatuses()
  754. {
  755.     return $this->CreateStatuses;
  756. }
  757.  
  758. /**
  759. * @param $abc
  760. */
  761. public function setViewReports($abc)
  762. {
  763.     $this->@ViewReports = $abc;
  764. }
  765.  
  766. /**
  767. * @return boolean
  768. */
  769. public function getViewReports()
  770. {
  771.     return $this->ViewReports;
  772. }
  773.  
  774. /**
  775. * @param $abc
  776. */
  777. public function setShowReports($abc)
  778. {
  779.     $this->@ShowReports = $abc;
  780. }
  781.  
  782. /**
  783. * @return boolean
  784. */
  785. public function getShowReports()
  786. {
  787.     return $this->ShowReports;
  788. }
  789.  
  790. /**
  791. * @param $abc
  792. */
  793. public function setGenerateReports($abc)
  794. {
  795.     $this->@GenerateReports = $abc;
  796. }
  797.  
  798. /**
  799. * @return boolean
  800. */
  801. public function getGenerateReports()
  802. {
  803.     return $this->GenerateReports;
  804. }
  805.  
  806. /**
  807. * @param $abc
  808. */
  809. public function setViewCollectiveReports($abc)
  810. {
  811.     $this->@ViewCollectiveReports = $abc;
  812. }
  813.  
  814. /**
  815. * @return boolean
  816. */
  817. public function getViewCollectiveReports()
  818. {
  819.     return $this->ViewCollectiveReports;
  820. }
  821.  
  822. /**
  823. * @param $abc
  824. */
  825. public function setShowCollectiveReports($abc)
  826. {
  827.     $this->@ShowCollectiveReports = $abc;
  828. }
  829.  
  830. /**
  831. * @return boolean
  832. */
  833. public function getShowCollectiveReports()
  834. {
  835.     return $this->ShowCollectiveReports;
  836. }
  837.  
  838. /**
  839. * @param $abc
  840. */
  841. public function setGenerateCollectiveReports($abc)
  842. {
  843.     $this->@GenerateCollectiveReports = $abc;
  844. }
  845.  
  846. /**
  847. * @return boolean
  848. */
  849. public function getGenerateCollectiveReports()
  850. {
  851.     return $this->GenerateCollectiveReports;
  852. }
  853.  
  854. /**
  855. * @param $abc
  856. */
  857. public function setViewBackups($abc)
  858. {
  859.     $this->@ViewBackups = $abc;
  860. }
  861.  
  862. /**
  863. * @return boolean
  864. */
  865. public function getViewBackups()
  866. {
  867.     return $this->ViewBackups;
  868. }
  869.  
  870. /**
  871. * @param $abc
  872. */
  873. public function set($abc)
  874. {
  875.     $this->@ = $abc;
  876. }
  877.  
  878. /**
  879. * @return boolean
  880. */
  881. public function get()
  882. {
  883.     return $this->;
  884. }
  885.  
  886. /**
  887. * @param $abc
  888. */
  889. public function setReports($abc)
  890. {
  891.     $this->@Reports = $abc;
  892. }
  893.  
  894. /**
  895. * @return boolean
  896. */
  897. public function getReports()
  898. {
  899.     return $this->Reports;
  900. }
  901.  
  902. /**
  903. * @param $abc
  904. */
  905. public function setShowBackupsReports($abc)
  906. {
  907.     $this->@ShowBackupsReports = $abc;
  908. }
  909.  
  910. /**
  911. * @return boolean
  912. */
  913. public function getShowBackupsReports()
  914. {
  915.     return $this->ShowBackupsReports;
  916. }
  917.  
  918. /**
  919. * @param $abc
  920. */
  921. public function setGenerateBackupsReports($abc)
  922. {
  923.     $this->@GenerateBackupsReports = $abc;
  924. }
  925.  
  926. /**
  927. * @return boolean
  928. */
  929. public function getGenerateBackupsReports()
  930. {
  931.     return $this->GenerateBackupsReports;
  932. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement