From: Ken N. <ke...@co...> - 2005-10-01 05:11:28
|
Hey Everyone, The second release candidate of the Classads module for phpWebsite is ready. You can download here: http://geekystuff.net/files/classads-0.1.1rc2.tar.gz The Classads module is a phpWebsite module modeled after newspaper classified ads. The structure is: Sections (parent) and Categories (child). There is a central menu to select Sections without having to move between screens. This also applies to the Classads records add / edit function. The random classad function works, but the classads block does not work yet. This is (hopefully) the last pre-final release. See BUGS_TODO.txt for a partial list. Any and all feedback is solicited and welcomed. -- Ken Nordquist "Did I Do That?" |
From: Greg M. <drk...@co...> - 2005-10-02 20:36:40
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ken Nordquist wrote: > Hey Everyone, > > The second release candidate of the Classads module for phpWebsite is > ready. You can download here: > > http://geekystuff.net/files/classads-0.1.1rc2.tar.gz > > The Classads module is a phpWebsite module modeled after newspaper > classified ads. The structure is: Sections (parent) and Categories > (child). There is a central menu to select Sections without having to > move between screens. This also applies to the Classads records add / > edit function. The random classad function works, but the classads > block does not work yet. > > This is (hopefully) the last pre-final release. See BUGS_TODO.txt for a > partial list. > > Any and all feedback is solicited and welcomed. > Ken, I created these links. Please let me know if you there's any additional information you'd like in the pages. Greg http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Third_Party_Modules http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Classads http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Nakes -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFDPsn0xyxe5L6mr7IRAnABAKCIOgKcASRl8MwqszFtMJq5QL6dQACgnzC6 hbJbCUbGxHQzZrN72xVTp9o= =+DVW -----END PGP SIGNATURE----- |
From: Greg M. <drk...@co...> - 2005-10-02 23:25:33
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ken Nordquist wrote: > Hey Everyone, > > The second release candidate of the Classads module for phpWebsite is > ready. You can download here: > > http://geekystuff.net/files/classads-0.1.1rc2.tar.gz > > The Classads module is a phpWebsite module modeled after newspaper > classified ads. The structure is: Sections (parent) and Categories > (child). There is a central menu to select Sections without having to > move between screens. This also applies to the Classads records add / > edit function. The random classad function works, but the classads > block does not work yet. > > This is (hopefully) the last pre-final release. See BUGS_TODO.txt for a > partial list. > > Any and all feedback is solicited and welcomed. > Ken, Please let me know if there's some additional information that you wanted on these pages. Greg http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Third_Party_Modules#Third_Party_Modules_Released_Thorough_Other_Developers http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Classads http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Nakes -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFDPnlAxyxe5L6mr7IRAukoAJ93IA7XoTF4yTe3Yn5CSbeUJfBYhgCffYVl S1wL/kcGDZXGrvYLZMT50+s= =LJlA -----END PGP SIGNATURE----- |
From: Matthew M. <ma...@tu...> - 2005-10-03 12:10:08
|
I need to keep this in mind for the university. Thanks Ken On Fri, 2005-09-30 at 21:24 -0400, Ken Nordquist wrote: > Hey Everyone, > > The second release candidate of the Classads module for phpWebsite is > ready. You can download here: > > http://geekystuff.net/files/classads-0.1.1rc2.tar.gz > > The Classads module is a phpWebsite module modeled after newspaper > classified ads. The structure is: Sections (parent) and Categories > (child). There is a central menu to select Sections without having to > move between screens. This also applies to the Classads records add / > edit function. The random classad function works, but the classads > block does not work yet. > > This is (hopefully) the last pre-final release. See BUGS_TODO.txt for a > partial list. > > Any and all feedback is solicited and welcomed. > -- Matthew McNaney Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |
From: Verdon V. <ve...@ve...> - 2005-10-04 23:22:48
|
hi all :) Has anyone worked out a simple/reliable method to detect the category(s) of whatever content is currently being displayed in your phpws site? I've come up with a few hacks that work in some mods and not in others, and I've spent hours looking at the $_SESSION and $GLOBALS arrays for something reliable, as well as the fatcat class files, but I haven't been able to work out a bullet-proof method yet. All I'm really trying to achieve is a way to capture the id of any fatcat categories the curent content may belong to, in my theme.php file, so I can use this variable. So far, I've been poking at things like this, just to see what'll happen, but the results are pretty inconsistant... $cur_mod = $GLOBALS["core"]->requestModule; $my_cats = $_SESSION["OBJ_fatcat"]->listModuleElements($cur_mod); foreach ($my_cats as $my_cat_title){ $cat_title = $my_cat_title["title"]; $cat_id = $_SESSION["OBJ_fatcat"]->getCatId($cat_title); echo $cat_id . '<br />'; echo $cat_title . '<br />'; } Does anyone have any better ideas? Thanks, verdon |
From: Ton en A. O. <ton...@he...> - 2005-10-05 05:34:03
|
Hi verdon, I did the same search when making my category hacks for blockmaker and menuman. You can download them from www.oosterhoff.nu For menuman the things you're looking for are in menuactions.php; for blockmaker it's in runtime.php Regards, Tony. -----Oorspronkelijk bericht----- Van: php...@li... [mailto:php...@li...] Namens Verdon Vaillancourt Verzonden: woensdag 5 oktober 2005 1:23 Aan: php...@li... Onderwerp: [Phpwebsite-developers] Detecting categories hi all :) Has anyone worked out a simple/reliable method to detect the category(s) of whatever content is currently being displayed in your phpws site? I've come up with a few hacks that work in some mods and not in others, and I've spent hours looking at the $_SESSION and $GLOBALS arrays for something reliable, as well as the fatcat class files, but I haven't been able to work out a bullet-proof method yet. All I'm really trying to achieve is a way to capture the id of any fatcat categories the curent content may belong to, in my theme.php file, so I can use this variable. So far, I've been poking at things like this, just to see what'll happen, but the results are pretty inconsistant... $cur_mod = $GLOBALS["core"]->requestModule; $my_cats = $_SESSION["OBJ_fatcat"]->listModuleElements($cur_mod); foreach ($my_cats as $my_cat_title){ $cat_title = $my_cat_title["title"]; $cat_id = $_SESSION["OBJ_fatcat"]->getCatId($cat_title); echo $cat_id . '<br />'; echo $cat_title . '<br />'; } Does anyone have any better ideas? Thanks, verdon ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ Phpwebsite-developers mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Verdon V. <ve...@ve...> - 2005-10-05 10:33:56
|
Thanks Tony :) I was aware of your hacks, but didn't think to look there. Doh ! verdon On 5-Oct-05, at 1:33 AM, Ton en Anja Oosterhoff wrote: > Hi verdon, > I did the same search when making my category hacks for blockmaker and > menuman. > You can download them from www.oosterhoff.nu > For menuman the things you're looking for are in menuactions.php; for > blockmaker it's in runtime.php > > Regards, > Tony. > > -----Oorspronkelijk bericht----- > Van: php...@li... > [mailto:php...@li...] Namens > Verdon > Vaillancourt > Verzonden: woensdag 5 oktober 2005 1:23 > Aan: php...@li... > Onderwerp: [Phpwebsite-developers] Detecting categories > > hi all :) > > Has anyone worked out a simple/reliable method to detect the > category(s) of whatever content is currently being displayed in your > phpws site? > > I've come up with a few hacks that work in some mods and not in others, > and I've spent hours looking at the $_SESSION and $GLOBALS arrays for > something reliable, as well as the fatcat class files, but I haven't > been able to work out a bullet-proof method yet. All I'm really trying > to achieve is a way to capture the id of any fatcat categories the > curent content may belong to, in my theme.php file, so I can use this > variable. > > So far, I've been poking at things like this, just to see what'll > happen, but the results are pretty inconsistant... > > $cur_mod = $GLOBALS["core"]->requestModule; > $my_cats = $_SESSION["OBJ_fatcat"]->listModuleElements($cur_mod); > > foreach ($my_cats as $my_cat_title){ > $cat_title = $my_cat_title["title"]; > $cat_id = $_SESSION["OBJ_fatcat"]->getCatId($cat_title); > echo $cat_id . '<br />'; > echo $cat_title . '<br />'; > } > > Does anyone have any better ideas? > > Thanks, > verdon > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Power Architecture Resource Center: Free content, downloads, > discussions, > and more. http://solutions.newsforge.com/ibmarch.tmpl > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Power Architecture Resource Center: Free content, downloads, > discussions, > and more. http://solutions.newsforge.com/ibmarch.tmpl > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |