functions.php 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863
  1. <?php
  2. define('InEmpireCMSHfun',TRUE);
  3. //-------------- 公共区 ----------------------
  4. //返回后台风格
  5. function EcmsReturnAdminStyle(){
  6. global $public_r;
  7. $adminstyle=(int)getcvar('loginadminstyleid',1);
  8. if(!strstr($public_r['adminstyle'],','.$adminstyle.','))
  9. {
  10. $adminstyle=$public_r['defadminstyle']?$public_r['defadminstyle']:1;
  11. }
  12. return $adminstyle;
  13. }
  14. //返回后台管理信息栏目导航字符串
  15. function AdminReturnClassLink($classid){
  16. global $class_r,$editor,$fun_r,$ecmscheck,$ecms_hashur;
  17. $addcheck='';
  18. if($ecmscheck)
  19. {
  20. $addcheck='&ecmscheck=1';
  21. }
  22. if($editor==1)
  23. {
  24. $addurl='../';
  25. }
  26. if(empty($class_r[$classid][featherclass]))
  27. {
  28. $class_r[$classid][featherclass]="|";
  29. }
  30. $r=explode("|",$class_r[$classid][featherclass].$classid."|");
  31. $string="<a href=\"".$addurl."ListAllInfo.php?tbname=".$class_r[$classid][tbname].$addcheck.$ecms_hashur['ehref']."\">".$fun_r['AdminInfo']."</a>";
  32. $count=count($r)-1;
  33. for($i=1;$i<$count;$i++)
  34. {
  35. $curl=$class_r[$r[$i]][islast]?"ListNews.php?classid=".$r[$i].$addcheck.$ecms_hashur['ehref']:"ListAllInfo.php?tbname=".$class_r[$r[$i]][tbname]."&classid=".$r[$i].$addcheck.$ecms_hashur['ehref'];
  36. $string.="&nbsp;>&nbsp;<a href=\"".$addurl."$curl\">".$class_r[$r[$i]][classname]."</a>";
  37. }
  38. return $string;
  39. }
  40. //加验证代码
  41. function AddCheckViewCode(){
  42. $code="if(!defined('InEmpireCMS'))
  43. {
  44. exit();
  45. }";
  46. return $code;
  47. }
  48. //加模板验证代码
  49. function AddCheckViewTempCode(){
  50. $code="<?php
  51. if(!defined('InEmpireCMS'))
  52. {
  53. exit();
  54. }
  55. ?>";
  56. return $code;
  57. }
  58. //后台分页
  59. function page2($num,$line,$page_line,$start,$page,$search){
  60. global $fun_r;
  61. if($num<=$line)
  62. {
  63. return '<span class="epages"><a title="'.$fun_r['admintrecord'].'">&nbsp;<b>'.$num.'</b> </a>&nbsp;&nbsp;</span>';
  64. }
  65. $search=RepPostStr($search,1);
  66. $url=eReturnSelfPage(0).'?page';
  67. $snum=2;//最小页数
  68. $totalpage=ceil($num/$line);//取得总页数
  69. $firststr='<a title="'.$fun_r['admintrecord'].'">&nbsp;<b>'.$num.'</b> </a>&nbsp;&nbsp;';
  70. //上一页
  71. if($page<>0)
  72. {
  73. $toppage='<a href="'.$url.'=0'.$search.'">'.$fun_r['adminstartpage'].'</a>&nbsp;';
  74. $pagepr=$page-1;
  75. $prepage='<a href="'.$url.'='.$pagepr.$search.'">'.$fun_r['adminpripage'].'</a>';
  76. }
  77. //下一页
  78. if($page!=$totalpage-1)
  79. {
  80. $pagenex=$page+1;
  81. $nextpage='&nbsp;<a href="'.$url.'='.$pagenex.$search.'">'.$fun_r['adminnextpage'].'</a>';
  82. $lastpage='&nbsp;<a href="'.$url.'='.($totalpage-1).$search.'">'.$fun_r['adminlastpage'].'</a>';
  83. }
  84. $starti=$page-$snum<0?0:$page-$snum;
  85. $no=0;
  86. for($i=$starti;$i<$totalpage&&$no<$page_line;$i++)
  87. {
  88. $no++;
  89. if($page==$i)
  90. {
  91. $is_1="<b>";
  92. $is_2="</b>";
  93. }
  94. else
  95. {
  96. $is_1='<a href="'.$url.'='.$i.$search.'">';
  97. $is_2="</a>";
  98. }
  99. $pagenum=$i+1;
  100. $returnstr.="&nbsp;".$is_1.$pagenum.$is_2;
  101. }
  102. $returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;
  103. return '<span class="epages">'.$returnstr.'</span>';
  104. }
  105. //后台分页
  106. function postpage($num,$line,$page_line,$start,$page,$form){
  107. global $fun_r;
  108. if($num<=$line)
  109. {
  110. return '';
  111. }
  112. $snum=2;//最小页数
  113. $totalpage=ceil($num/$line);//取得总页数
  114. $firststr='<a title="'.$fun_r['admintrecord'].'">&nbsp;<b>'.$num.'</b> </a>&nbsp;&nbsp;';
  115. //上一页
  116. if($page<>0)
  117. {
  118. $toppage='<a href="#ecms" onclick="javascript:GotoPostPage(0,0);">'.$fun_r['adminstartpage'].'</a>&nbsp;';
  119. $pagepr=$page-1;
  120. $prepage='<a href="#ecms" onclick="javascript:GotoPostPage('.$pagepr.',0);">'.$fun_r['adminpripage'].'</a>';
  121. }
  122. //下一页
  123. if($page!=$totalpage-1)
  124. {
  125. $pagenex=$page+1;
  126. $nextpage='&nbsp;<a href="#ecms" onclick="javascript:GotoPostPage('.$pagenex.',0);">'.$fun_r['adminnextpage'].'</a>';
  127. $lastpage='&nbsp;<a href="#ecms" onclick="javascript:GotoPostPage('.($totalpage-1).',0);">'.$fun_r['adminlastpage'].'</a>';
  128. }
  129. $starti=$page-$snum<0?0:$page-$snum;
  130. $no=0;
  131. for($i=$starti;$i<$totalpage&&$no<$page_line;$i++)
  132. {
  133. $no++;
  134. if($page==$i)
  135. {
  136. $is_1="<b>";
  137. $is_2="</b>";
  138. }
  139. else
  140. {
  141. $is_1='<a href="#ecms" onclick="javascript:GotoPostPage('.$i.',0);">';
  142. $is_2="</a>";
  143. }
  144. $pagenum=$i+1;
  145. $returnstr.="&nbsp;".$is_1.$pagenum.$is_2;
  146. }
  147. $returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;
  148. $returnstr.="<script>
  149. function GotoPostPage(page,start){
  150. ".$form.".page.value=page;
  151. ".$form.".start.value=start;
  152. ".$form.".submit();
  153. }
  154. </script>";
  155. return $returnstr;
  156. }
  157. //取得模型表名
  158. function GetModTable($mid){
  159. global $empire,$dbtbpre;
  160. $r=$empire->fetch1("select tid,tbname from {$dbtbpre}enewsmod where mid='$mid'");
  161. return $r;
  162. }
  163. //建立专题目录
  164. function CreateZtPath($ztpath){
  165. $createpath=eReturnTrueEcmsPath().$ztpath;
  166. $mk=DoMkdir($createpath);
  167. $createfilepath=$createpath.'/uploadfile';//建立附件目录
  168. $mk1=DoMkdir($createfilepath);
  169. }
  170. //建立栏目目录
  171. function CreateClassPath($classpath){
  172. $createpath=eReturnTrueEcmsPath().$classpath;
  173. $mk=DoMkdir($createpath);
  174. $createfilepath=eReturnTrueEcmsPath().'d/file/'.$classpath;//建立附件目录
  175. $mk1=DoMkdir($createfilepath);
  176. }
  177. //建立标题分类目录
  178. function CreateInfoTypePath($tpath){
  179. $createpath=eReturnTrueEcmsPath().$tpath;
  180. $mk=DoMkdir($createpath);
  181. }
  182. //建立栏目目录
  183. function FormatClassPath($classpath,$islast){
  184. $r=explode("/",$classpath);
  185. $returnpath="";
  186. for($i=0;$i<count($r);$i++)
  187. {
  188. if($i>0)
  189. {
  190. $returnpath.="/".$r[$i];
  191. }
  192. else
  193. {
  194. $returnpath.=$r[$i];
  195. }
  196. CreateClassPath($returnpath);
  197. }
  198. return $returnpath;
  199. }
  200. //自建目录
  201. function eAutodo_eCreatePath($dotype,$classid,$ecms=0){
  202. global $empire,$dbtbpre,$public_r,$class_r,$class_zr,$class_tr,$ecms_config;
  203. $classid=(int)$classid;
  204. $path='';
  205. if($dotype=='cpage')//栏目
  206. {
  207. if(!$class_r[$classid]['classpath'])
  208. {
  209. return '';
  210. }
  211. $path=$class_r[$classid]['classpath'];
  212. $truepath=eReturnTrueEcmsPath().$path;
  213. if(file_exists($truepath))
  214. {
  215. return '';
  216. }
  217. $islast=$class_r[$classid]['islast'];
  218. FormatClassPath($path,$islast);
  219. }
  220. elseif($dotype=='zpage')//专题
  221. {
  222. if(!$class_zr[$classid]['ztpath'])
  223. {
  224. return '';
  225. }
  226. $path=$class_zr[$classid]['ztpath'];
  227. $truepath=eReturnTrueEcmsPath().$path;
  228. if(file_exists($truepath))
  229. {
  230. return '';
  231. }
  232. CreateZtPath($path);
  233. }
  234. elseif($dotype=='tpage')//标题分类
  235. {
  236. if(!$class_tr[$classid]['tpath'])
  237. {
  238. return '';
  239. }
  240. $path=$class_tr[$classid]['tpath'];
  241. $truepath=eReturnTrueEcmsPath().$path;
  242. if(file_exists($truepath))
  243. {
  244. return '';
  245. }
  246. CreateInfoTypePath($path);
  247. }
  248. else
  249. {
  250. return '';
  251. }
  252. }
  253. //删除栏目缓存文件
  254. function DelListEnews(){
  255. $file=ECMS_PATH."e/data/fc/ListEnews.php";
  256. DelFiletext($file);
  257. $file1=ECMS_PATH."e/data/fc/ListClass0.php";
  258. DelFiletext($file1);
  259. $file2=ECMS_PATH."e/data/fc/ListClass1.php";
  260. DelFiletext($file2);
  261. }
  262. //删除模板临时缓存文件
  263. function DelOneTempTmpfile($classid){
  264. $file=ECMS_PATH.'e/data/tmp/dt_temp'.$classid.'.php';
  265. if(file_exists($file))
  266. {
  267. DelFiletext($file);
  268. }
  269. }
  270. //替换php代码
  271. function RepPhpAspJspcode($string){
  272. global $public_r;
  273. if(!$public_r[candocode]){
  274. //$string=str_replace("<?xml","[!--ecms.xml--]",$string);
  275. $string=str_replace("<\\","&lt;\\",$string);
  276. $string=str_replace("\\>","\\&gt;",$string);
  277. $string=str_replace("<?","&lt;?",$string);
  278. $string=str_replace("<%","&lt;%",$string);
  279. if(@stristr($string,' language'))
  280. {
  281. $string=preg_replace(array('!<script!i','!</script>!i'),array('&lt;script','&lt;/script&gt;'),$string);
  282. }
  283. //$string=str_replace("[!--ecms.xml--]","<?xml",$string);
  284. }
  285. return $string;
  286. }
  287. //替换php代码
  288. function RepPhpAspJspcodeText($string){
  289. //$string=str_replace("<?xml","[!--ecms.xml--]",$string);
  290. $string=str_replace("<\\","&lt;\\",$string);
  291. $string=str_replace("\\>","\\&gt;",$string);
  292. $string=str_replace("<?","&lt;?",$string);
  293. $string=str_replace("<%","&lt;%",$string);
  294. if(@stristr($string,' language'))
  295. {
  296. $string=preg_replace(array('!<script!i','!</script>!i'),array('&lt;script','&lt;/script&gt;'),$string);
  297. }
  298. //$string=str_replace("[!--ecms.xml--]","<?xml",$string);
  299. $string=str_replace("<!--code.start-->","&lt;!--code.start--&gt;",$string);
  300. $string=str_replace("<!--code.end-->","&lt;!--code.end--&gt;",$string);
  301. return $string;
  302. }
  303. //替换文件前缀
  304. function RepFilenameQz($qz,$ecms=0){
  305. if(empty($ecms))
  306. {
  307. $qz=str_replace("/","",$qz);
  308. $qz=str_replace("\\","",$qz);
  309. }
  310. $qz=str_replace("#","",$qz);
  311. $qz=str_replace("&","",$qz);
  312. $qz=str_replace(":","",$qz);
  313. $qz=str_replace(";","",$qz);
  314. $qz=str_replace("<","",$qz);
  315. $qz=str_replace(">","",$qz);
  316. $qz=str_replace("?","",$qz);
  317. $qz=str_replace("*","",$qz);
  318. $qz=str_replace("%","",$qz);
  319. $qz=str_replace("|","",$qz);
  320. $qz=str_replace("\"","",$qz);
  321. $qz=str_replace("'","",$qz);
  322. $qz=str_replace(".","",$qz);
  323. return $qz;
  324. }
  325. //替换目录值
  326. function RepPathStr($path){
  327. $path=str_replace("\\","",$path);
  328. $path=str_replace("/","",$path);
  329. return $path;
  330. }
  331. //返回替换字符
  332. function ReturnCheckDoRep(){
  333. global $empire,$dbtbpre;
  334. //信息来源
  335. $befrom=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsbefrom");
  336. //作者
  337. $writer=$empire->gettotal("select count(*) as total from {$dbtbpre}enewswriter");
  338. //替换字符
  339. $words=$empire->gettotal("select count(*) as total from {$dbtbpre}enewswords");
  340. //内容关键字
  341. $key=$empire->gettotal("select count(*) as total from {$dbtbpre}enewskey");
  342. $str=",$befrom,$writer,$words,$key,";
  343. return $str;
  344. }
  345. //返回替换验证
  346. function ReturnCheckDoRepStr(){
  347. global $public_r;
  348. return explode(',',$public_r[checkdorepstr]);
  349. }
  350. //取得栏目目录名称
  351. function GetPathname($classname){
  352. $c=explode("/",$classname);
  353. $count=count($c)-1;
  354. $cr[0]=$c[$count];//栏目目录名
  355. $len=strlen($cr[0]);
  356. //上级栏目目录名
  357. $cr[1]=substr($classname,0,strlen($classname)-$len);
  358. return $cr;
  359. }
  360. //更新缓存
  361. function ChangeEnewsData($userid,$username){
  362. //操作权限
  363. CheckLevel($userid,$username,$classid,"changedata");
  364. //更新参数设置
  365. GetConfig(1);
  366. //更新类别
  367. GetClass();
  368. //更新会员组
  369. GetMemberLevel();
  370. //更新全站搜索数据表
  371. GetSearchAllTb();
  372. //操作日志
  373. insert_dolog("");
  374. printerror("ChangeDataSuccess","history.go(-1)");
  375. }
  376. //返回文件名
  377. function ReturnPathFile($filename){
  378. $fr=explode("/",$filename);
  379. $count=count($fr)-1;
  380. return $fr[$count];
  381. }
  382. //返回栏目链接(无缓存)
  383. function sys_ReturnBqClassUrl($r){
  384. global $public_r;
  385. //外部栏目
  386. if($r[wburl])
  387. {
  388. $classurl=$r[wburl];
  389. }
  390. //动态列表
  391. elseif($r['listdt'])
  392. {
  393. $rewriter=eReturnRewriteClassUrl($r['classid'],1);
  394. $classurl=$rewriter['pageurl'];
  395. }
  396. elseif($r['classurl'])
  397. {
  398. $classurl=$r['classurl'];
  399. }
  400. else
  401. {
  402. $classurl=$public_r['newsurl'].$r['classpath']."/";
  403. }
  404. return $classurl;
  405. }
  406. //返回专题链接(无缓存)
  407. function sys_ReturnBqZtUrl($r){
  408. global $public_r;
  409. if($r['zturl'])
  410. {
  411. $zturl=$r['zturl'];
  412. }
  413. else
  414. {
  415. $zturl=$public_r['newsurl'].$r['ztpath']."/";
  416. }
  417. return $zturl;
  418. }
  419. //组合两数组
  420. function TogTwoArray($r,$ra){
  421. $returnr=array_merge($r,$ra);
  422. return $returnr;
  423. }
  424. //下载
  425. function DownLoadFile($file,$filepath,$ecms=0){
  426. if(empty($file))
  427. {
  428. printerror("FileNotExist","history.go(-1)");
  429. }
  430. if(!file_exists($filepath))
  431. {
  432. printerror("FileNotExist","");
  433. }
  434. $filesize=@filesize($filepath);
  435. //下载
  436. Header("Content-type: application/octet-stream");
  437. Header("Accept-Ranges: bytes");
  438. Header("Accept-Length: ".$filesize);
  439. Header("Content-Disposition: attachment; filename=".$file);
  440. echo ReadFiletext($filepath);
  441. if($ecms==1)
  442. {
  443. DelFiletext($filepath);
  444. }
  445. }
  446. //下载内容
  447. function DownLoadFileText($filetext,$filename){
  448. if(empty($filetext)||empty($filename))
  449. {
  450. return '';
  451. }
  452. $filesize=strlen($filetext);
  453. //下载
  454. Header("Content-type: application/octet-stream");
  455. Header("Accept-Ranges: bytes");
  456. Header("Accept-Length: ".$filesize);
  457. Header("Content-Disposition: attachment; filename=".$filename);
  458. echo $filetext;
  459. }
  460. //取得缓存文件内容
  461. function GetFcfiletext($file){
  462. $str1="document.write(\"";
  463. $str2="\");";
  464. $text=ReadFiletext($file);
  465. $text=stripSlashes(str_replace($str2,"",str_replace($str1,"",$text)));
  466. return $text;
  467. }
  468. //验证模板组是否存在
  469. function CheckTempGroup($gid){
  470. global $empire,$dbtbpre;
  471. if(empty($gid))
  472. {
  473. $gid=GetDoTempGid();
  474. }
  475. $gid=(int)$gid;
  476. $r=$empire->fetch1("select gid,gname from {$dbtbpre}enewstempgroup where gid='$gid'");
  477. if(empty($r['gid']))
  478. {
  479. printerror("ErrorUrl","");
  480. }
  481. return $r['gname'];
  482. }
  483. //附加隐藏表单项
  484. function ReturnFormHidden($vname,$value){
  485. $value=ehtmlspecialchars(ClearAddsData($value));
  486. return "<input type=hidden name=\"".$vname."\" value=\"".$value."\">";
  487. }
  488. //验证多选上传插件是否开启
  489. function TranmoreIsOpen($ecms='addinfo'){
  490. $open=0;
  491. $file='ecmseditor/tranmore/tranmore.php';
  492. if($ecms=='addinfo')
  493. {
  494. $file='ecmseditor/tranmore/tranmore.php';
  495. }
  496. elseif($ecms=='editor')
  497. {
  498. $file='../tranmore/tranmore.php';
  499. }
  500. elseif($ecms=='filemain')
  501. {
  502. $file='tranmore/tranmore.php';
  503. }
  504. if(file_exists($file))
  505. {
  506. $open=1;
  507. }
  508. return $open;
  509. }
  510. //-------------- 信息处理区 ----------------------
  511. //替换关键字
  512. function ReplaceKey($newstext,$classid=0){
  513. global $empire,$dbtbpre,$public_r,$class_r;
  514. if(empty($newstext)||$class_r[$classid]['keycid']==-1)
  515. {return $newstext;}
  516. $where='';
  517. if(!empty($class_r[$classid]['keycid']))
  518. {
  519. $where=" where cid='".$class_r[$classid]['keycid']."'";
  520. }
  521. $sql=$empire->query("select keyname,keyurl from {$dbtbpre}enewskey".$where);
  522. while($r=$empire->fetch($sql))
  523. {
  524. if(STR_IREPLACE)
  525. {
  526. $newstext=empty($public_r[repkeynum])?str_ireplace($r[keyname],'<a href='.$r[keyurl].' target=_blank class=infotextkey>'.$r[keyname].'</a>',$newstext):preg_replace('/'.$r[keyname].'/i','<a href='.$r[keyurl].' target=_blank class=infotextkey>'.$r[keyname].'</a>',$newstext,$public_r[repkeynum]);
  527. }
  528. else
  529. {
  530. $newstext=empty($public_r[repkeynum])?str_replace($r[keyname],'<a href='.$r[keyurl].' target=_blank class=infotextkey>'.$r[keyname].'</a>',$newstext):preg_replace('/'.$r[keyname].'/i','<a href='.$r[keyurl].' target=_blank class=infotextkey>'.$r[keyname].'</a>',$newstext,$public_r[repkeynum]);
  531. }
  532. }
  533. return $newstext;
  534. }
  535. //替换禁用字符
  536. function ReplaceWord($newstext){
  537. global $empire,$dbtbpre;
  538. if(empty($newstext))
  539. {return $newstext;}
  540. $sql=$empire->query("select newword,oldword from {$dbtbpre}enewswords");
  541. while($r=$empire->fetch($sql))
  542. {
  543. $newstext=str_replace($r[oldword],$r[newword],$newstext);
  544. }
  545. return $newstext;
  546. }
  547. //编辑信息时替换关键字和过滤字符
  548. function DoReplaceKeyAndWord($newstext,$dokey,$classid=0){
  549. global $public_r;
  550. $docheckrep=ReturnCheckDoRepStr();//返回替换验证字符
  551. if($public_r['dorepword']==1&&$docheckrep[3])//过滤字符
  552. {
  553. $newstext=ReplaceWord($newstext);
  554. }
  555. if($public_r['dorepkey']==1&&$docheckrep[4]&&!empty($dokey))//内容关键字
  556. {
  557. $newstext=ReplaceKey($newstext,$classid);
  558. }
  559. return $newstext;
  560. }
  561. //重命名列表文件
  562. function RenameListfile($classid,$lencord,$num,$type,$newtype,$classpath){
  563. $page=ceil($num/$lencord);
  564. for($j=1;$j<=$page;$j++)
  565. {
  566. if($j==1)
  567. {
  568. $listfile=ECMS_PATH.$classpath."/index";
  569. }
  570. else
  571. {
  572. $listfile=ECMS_PATH.$classpath."/index_".$j;
  573. }
  574. @rename($listfile.$type,$listfile.$newtype);
  575. }
  576. }
  577. //验证是否有设置头条级别权限
  578. function eFirstTitleCheckLevel($levelid,$ttype=0){
  579. global $empire,$dbtbpre,$lur,$classid,$class_r;
  580. $levelid=(int)$levelid;
  581. $ttype=(int)$ttype;
  582. if(!$levelid)
  583. {
  584. return 1;
  585. }
  586. $r=$empire->fetch1("select tid,groupid from {$dbtbpre}enewsgoodtype where levelid='$levelid' and ttype='$ttype' limit 1");
  587. if(!$r['tid'])
  588. {
  589. return 0;
  590. }
  591. if($r['groupid'])
  592. {
  593. if(!strstr($r['groupid'],','.$lur['groupid'].','))
  594. {
  595. return 0;
  596. }
  597. }
  598. return 1;
  599. }
  600. //组合标题属性
  601. function TitleFont($titlefont,$titlecolor=''){
  602. $add=$titlecolor.',';
  603. if($titlecolor=='no')
  604. {
  605. $add='';
  606. }
  607. if($titlefont[b])//粗体
  608. {$add.='b|';}
  609. if($titlefont[i])//斜体
  610. {$add.='i|';}
  611. if($titlefont[s])//删除线
  612. {$add.='s|';}
  613. if($add==',')
  614. {
  615. $add='';
  616. }
  617. return $add;
  618. }
  619. //单信息加入专题
  620. function AddInfoToZt($ztid,$zcid,$classid,$id,$newstime,$isgood=0,$ecms=0){
  621. global $empire,$dbtbpre,$class_r;
  622. if($ecms==1)//检查是否增加过
  623. {
  624. $infor=$empire->fetch1("select zid,ztid,cid from {$dbtbpre}enewsztinfo where ztid='$ztid' and classid='$classid' and id='$id' limit 1");
  625. if($infor['ztid'])
  626. {
  627. if($infor['cid']!=$zcid)
  628. {
  629. $empire->query("update {$dbtbpre}enewsztinfo set cid='$zcid',newstime='$newstime' where zid='$infor[zid]' limit 1");
  630. }
  631. }
  632. else
  633. {
  634. $mid=$class_r[$classid]['modid'];
  635. $empire->query("insert into {$dbtbpre}enewsztinfo(ztid,cid,classid,id,newstime,mid,isgood) values('$ztid','$zcid','$classid','$id','$newstime','$mid','$isgood');");
  636. }
  637. }
  638. else
  639. {
  640. $mid=$class_r[$classid]['modid'];
  641. $empire->query("insert into {$dbtbpre}enewsztinfo(ztid,cid,classid,id,newstime,mid,isgood) values('$ztid','$zcid','$classid','$id','$newstime','$mid','$isgood');");
  642. }
  643. }
  644. //多信息加入专题
  645. function AddMoreInfoToZt($ztid,$zcid,$tbname,$where,$ecms=0){
  646. global $empire,$dbtbpre,$class_r;
  647. if(empty($where))
  648. {
  649. return '';
  650. }
  651. $sql=$empire->query("select id,classid,newstime from {$dbtbpre}ecms_".$tbname.($ecms==0?'':'_index')." where ".$where);
  652. while($r=$empire->fetch($sql))
  653. {
  654. $zinfor=$empire->fetch1("select zid,ztid,cid from {$dbtbpre}enewsztinfo where ztid='$ztid' and classid='$r[classid]' and id='$r[id]' limit 1");
  655. if($zinfor['ztid'])
  656. {
  657. if($zinfor['cid']!=$zcid)
  658. {
  659. $empire->query("update {$dbtbpre}enewsztinfo set cid='$zcid' where zid='$zinfor[zid]' limit 1");
  660. }
  661. }
  662. else
  663. {
  664. $mid=$class_r[$r[classid]]['modid'];
  665. $empire->query("insert into {$dbtbpre}enewsztinfo(ztid,cid,classid,id,newstime,mid,isgood) values('$ztid','$zcid','$r[classid]','$r[id]','$r[newstime]','$mid','0');");
  666. }
  667. }
  668. }
  669. //加入专题
  670. function InsertZtInfo($ztids,$zcids,$oldztids,$oldzcids,$classid,$id,$newstime){
  671. global $empire,$dbtbpre,$class_r;
  672. if($zcids==$oldzcids)
  673. {
  674. return '';
  675. }
  676. $haveztids='';
  677. $dh='';
  678. //加入专题分类
  679. if($zcids)
  680. {
  681. $r=explode(',',$zcids);
  682. $count=count($r);
  683. for($i=0;$i<$count;$i++)
  684. {
  685. $cid=(int)$r[$i];
  686. if(!$cid)
  687. {
  688. continue;
  689. }
  690. if($cid<0)
  691. {
  692. $thisztid=abs($cid);
  693. $cid=0;
  694. }
  695. else
  696. {
  697. $zcr=$empire->fetch1("select ztid from {$dbtbpre}enewszttype where cid='$cid' limit 1");
  698. if(!$zcr['ztid'])
  699. {
  700. continue;
  701. }
  702. $thisztid=$zcr['ztid'];
  703. }
  704. AddInfoToZt($thisztid,$cid,$classid,$id,$newstime,0,1);
  705. $haveztids.=$dh.$thisztid;
  706. $dh=',';
  707. }
  708. }
  709. //清理没选专题
  710. if($oldztids)
  711. {
  712. $dr=explode(',',$oldztids);
  713. $dcount=count($dr);
  714. for($di=0;$di<$dcount;$di++)
  715. {
  716. $dztid=(int)$dr[$di];
  717. if(!$dztid||strstr(','.$haveztids.',',','.$dztid.','))
  718. {
  719. continue;
  720. }
  721. $empire->query("delete from {$dbtbpre}enewsztinfo where ztid='$dztid' and classid='$classid' and id='$id'");
  722. }
  723. }
  724. }
  725. //取消加入专题
  726. function DelZtInfo($where){
  727. global $empire,$dbtbpre,$class_r;
  728. if(!$where)
  729. {
  730. return '';
  731. }
  732. $empire->query("delete from {$dbtbpre}enewsztinfo where ".$where);
  733. }
  734. //信息送审
  735. function InfoInsertToWorkflow($id,$classid,$wfid,$userid,$username){
  736. global $empire,$dbtbpre,$class_r;
  737. $wfitemr=$empire->fetch1("select tid,tno,groupid,userclass,username,tstatus from {$dbtbpre}enewsworkflowitem where wfid='$wfid' order by tno limit 1");
  738. //状态更新
  739. $empire->query("insert into {$dbtbpre}enewswfinfo(id,classid,wfid,tid,groupid,userclass,username,checknum,tstatus,checktno) values('$id','$classid','$wfid','$wfitemr[tid]','$wfitemr[groupid]','$wfitemr[userclass]','$wfitemr[username]',1,'$wfitemr[tstatus]',0);");
  740. //日志
  741. InsertWfLog($classid,$id,$wfid,0,$username,'',1,0);
  742. }
  743. //信息返工送审
  744. function InfoUpdateToWorkflow($id,$classid,$wfid,$userid,$username){
  745. global $empire,$dbtbpre,$class_r;
  746. $wfinfor=$empire->fetch1("select checknum,wfid,tid,checktno from {$dbtbpre}enewswfinfo where id='$id' and classid='$classid' limit 1");
  747. if($wfinfor[checktno]!='101')
  748. {
  749. return '';
  750. }
  751. if($wfinfor[tid])
  752. {
  753. $ywfitemr=$empire->fetch1("select tno from {$dbtbpre}enewsworkflowitem where tid='$wfinfor[tid]'");
  754. $wfitemr=$empire->fetch1("select tid,tno,groupid,userclass,username,tstatus from {$dbtbpre}enewsworkflowitem where wfid='$wfinfor[wfid]' and tno>$ywfitemr[tno] order by tno limit 1");
  755. }
  756. else
  757. {
  758. $wfitemr=$empire->fetch1("select tid,tno,groupid,userclass,username,tstatus from {$dbtbpre}enewsworkflowitem where wfid='$wfinfor[wfid]' order by tno limit 1");
  759. }
  760. //状态更新
  761. $empire->query("update {$dbtbpre}enewswfinfo set tid='$wfitemr[tid]',groupid='$wfitemr[groupid]',userclass='$wfitemr[userclass]',username='$wfitemr[username]',checknum=checknum+1,tstatus='$wfitemr[tstatus]',checktno='0' where id='$id' and classid='$classid' limit 1");
  762. //日志
  763. InsertWfLog($classid,$id,$wfinfor[wfid],0,$username,'',$wfinfor[checknum],0);
  764. }
  765. //写入签发日志
  766. function InsertWfLog($classid,$id,$wfid,$tid,$username,$checktext,$checknum,$checktype){
  767. global $empire,$dbtbpre,$class_r,$lur;
  768. $checktime=time();
  769. $checktext=RepPostStr($checktext);
  770. $empire->query("insert into {$dbtbpre}enewswfinfolog(id,classid,wfid,tid,username,checktime,checktext,checknum,checktype) values('$id','$classid','$wfid','$tid','$username','$checktime','$checktext','$checknum','$checktype');");
  771. }
  772. //返回是否签发
  773. function EcmsReturnDoIsqf($userid,$username,$ugroupid,$ecms=0){
  774. global $empire,$public_r,$dbtbpre,$emod_r,$lur;
  775. $ugroupid=(int)$ugroupid;
  776. $ugr=ReturnLeftLevel($ugroupid);
  777. $qf=$ugr['doisqf']?1:0;
  778. return $qf;
  779. }
  780. //加入TAG表
  781. function eInsertTags($tags,$classid,$id,$newstime){
  782. global $empire,$dbtbpre,$class_r;
  783. if(!trim($tags))
  784. {
  785. return '';
  786. }
  787. $tags=RepPostVar($tags);
  788. $classid=(int)$classid;
  789. $id=(int)$id;
  790. $mid=(int)$class_r[$classid][modid];
  791. $tr=explode(',',$tags);
  792. $count=count($tr);
  793. for($i=0;$i<$count;$i++)
  794. {
  795. $tagname=$tr[$i];
  796. if(empty($tagname))
  797. {
  798. continue;
  799. }
  800. $r=$empire->fetch1("select tagid from {$dbtbpre}enewstags where tagname='$tagname' limit 1");
  801. if($r[tagid])
  802. {
  803. $datar=$empire->fetch1("select tagid,classid,newstime from {$dbtbpre}enewstagsdata where tagid='$r[tagid]' and id='$id' and mid='$mid' limit 1");
  804. if($datar[tagid])
  805. {
  806. if($datar[classid]!=$classid||$datar[newstime]!=$newstime)
  807. {
  808. $empire->query("update {$dbtbpre}enewstagsdata set classid='$classid',newstime='$newstime' where tagid='$r[tagid]' and id='$id' and mid='$mid' limit 1");
  809. }
  810. }
  811. else
  812. {
  813. $empire->query("update {$dbtbpre}enewstags set num=num+1 where tagid='$r[tagid]'");
  814. $empire->query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$r[tagid]','$classid','$id','$newstime','$mid');");
  815. }
  816. }
  817. else
  818. {
  819. $empire->query("insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values('$tagname',1,0,0);");
  820. $tagid=$empire->lastid();
  821. $empire->query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$tagid','$classid','$id','$newstime','$mid');");
  822. }
  823. }
  824. }
  825. //返回信息TAGS
  826. function eReturnInfoTags($classid,$id,$mid){
  827. global $empire,$dbtbpre,$class_r;
  828. if(!$mid||!$id)
  829. {
  830. return '';
  831. }
  832. $tags='';
  833. $dh='';
  834. $sql=$empire->query("select tagid from {$dbtbpre}enewstagsdata where id='$id' and mid='$mid' order by tagid");
  835. while($r=$empire->fetch($sql))
  836. {
  837. $tr=$empire->fetch1("select tagname from {$dbtbpre}enewstags where tagid='$r[tagid]'");
  838. $tags.=$dh.$tr[tagname];
  839. $dh=',';
  840. }
  841. return $tags;
  842. }
  843. //未审核表信息转换
  844. function MoveCheckInfoData($tbname,$checked,$stb,$where){
  845. global $empire,$dbtbpre;
  846. if(empty($checked))
  847. {
  848. $ytbname=$dbtbpre.'ecms_'.$tbname.'_check';
  849. $ydatatbname=$dbtbpre.'ecms_'.$tbname.'_check_data';
  850. $ntbname=$dbtbpre.'ecms_'.$tbname;
  851. $ndatatbname=$dbtbpre.'ecms_'.$tbname.'_data_'.$stb;
  852. }
  853. else
  854. {
  855. $ytbname=$dbtbpre.'ecms_'.$tbname;
  856. $ydatatbname=$dbtbpre.'ecms_'.$tbname.'_data_'.$stb;
  857. $ntbname=$dbtbpre.'ecms_'.$tbname.'_check';
  858. $ndatatbname=$dbtbpre.'ecms_'.$tbname.'_check_data';
  859. }
  860. $empire->query("replace into ".$ntbname." select * from ".$ytbname." where ".$where);
  861. $empire->query("replace into ".$ndatatbname." select * from ".$ydatatbname." where ".$where);
  862. //删除原表
  863. $empire->query("delete from ".$ytbname." where ".$where);
  864. $empire->query("delete from ".$ydatatbname." where ".$where);
  865. }
  866. //更新副表字段内容
  867. function UpdateAllDataTbField($tbname,$update,$where,$upcheck=1,$updoc=1){
  868. global $empire,$dbtbpre;
  869. //已审核
  870. $tbr=$empire->fetch1("select datatbs from {$dbtbpre}enewstable where tbname='$tbname' limit 1");
  871. if($tbr['datatbs'])
  872. {
  873. $dtbr=explode(',',$tbr['datatbs']);
  874. $count=count($dtbr);
  875. for($i=1;$i<$count-1;$i++)
  876. {
  877. $empire->query("update {$dbtbpre}ecms_".$tbname."_data_".$dtbr[$i]." set ".$update.$where);
  878. }
  879. }
  880. //未审核
  881. if($upcheck==1)
  882. {
  883. $empire->query("update {$dbtbpre}ecms_".$tbname."_check_data set ".$update.$where);
  884. }
  885. //归档
  886. if($updoc==1)
  887. {
  888. $empire->query("update {$dbtbpre}ecms_".$tbname."_doc_data set ".$update.$where);
  889. }
  890. }
  891. //删除副表信息(批量)
  892. function DelAllDataTbInfo($tbname,$where,$delcheck=1,$deldoc=1){
  893. global $empire,$dbtbpre;
  894. if(empty($where))
  895. {
  896. return '';
  897. }
  898. //已审核
  899. $tbr=$empire->fetch1("select datatbs from {$dbtbpre}enewstable where tbname='$tbname' limit 1");
  900. if($tbr['datatbs'])
  901. {
  902. $dtbr=explode(',',$tbr['datatbs']);
  903. $count=count($dtbr);
  904. for($i=1;$i<$count-1;$i++)
  905. {
  906. $empire->query("delete from {$dbtbpre}ecms_".$tbname."_data_".$dtbr[$i]." where ".$where);
  907. }
  908. }
  909. //未审核
  910. if($delcheck==1)
  911. {
  912. $empire->query("delete from {$dbtbpre}ecms_".$tbname."_check_data where ".$where);
  913. }
  914. //归档
  915. if($deldoc==1)
  916. {
  917. $empire->query("delete from {$dbtbpre}ecms_".$tbname."_doc_data where ".$where);
  918. }
  919. }
  920. //返回命名方式
  921. function ReturnInfoFilename($classid,$id,$filenameqz){
  922. global $class_r;
  923. if($class_r[$classid][filename]==1) //time命名
  924. {
  925. $filename=$class_r[$classid][filename_qz].time().$id;
  926. }
  927. elseif($class_r[$classid][filename]==2) //md5命名
  928. {
  929. $filename=$class_r[$classid][filename_qz].md5(uniqid(microtime()).$id);
  930. }
  931. elseif($class_r[$classid][filename]==3) //目录
  932. {
  933. $filename=$class_r[$classid][filename_qz].$id.'/index';
  934. }
  935. elseif($class_r[$classid][filename]==4) //date命名
  936. {
  937. $filename=$class_r[$classid][filename_qz].date('Ymd').$id;
  938. }
  939. elseif($class_r[$classid][filename]==5) //公共信息ID
  940. {
  941. $filename=$class_r[$classid][filename_qz].ReturnInfoPubid($classid,$id);
  942. }
  943. else //id
  944. {
  945. $filename=$class_r[$classid][filename_qz].$id;
  946. }
  947. $filename=$filenameqz.$filename;
  948. return $filename;
  949. }
  950. //删除其他相关附件
  951. function DelFileOtherTable($where,$tb='other'){
  952. global $empire,$dbtbpre,$public_r;
  953. if(empty($where))
  954. {
  955. return '';
  956. }
  957. //删除附件
  958. $filesql=$empire->query("select filename,path,modtype,fpath from {$dbtbpre}enewsfile_{$tb} where ".$where);
  959. while($filer=$empire->fetch($filesql))
  960. {
  961. DoDelFile($filer);
  962. }
  963. $empire->query("delete from {$dbtbpre}enewsfile_{$tb} where ".$where);
  964. }
  965. //按条件删除信息附件
  966. function DelFileAllTable($where){
  967. global $empire,$dbtbpre,$public_r;
  968. if(empty($where))
  969. {
  970. return '';
  971. }
  972. if($public_r['filedatatbs'])
  973. {
  974. $dtbr=explode(',',$public_r['filedatatbs']);
  975. $count=count($dtbr);
  976. for($i=1;$i<$count-1;$i++)
  977. {
  978. //删除附件
  979. $filesql=$empire->query("select filename,path,classid,fpath from {$dbtbpre}enewsfile_".$dtbr[$i]." where ".$where);
  980. while($filer=$empire->fetch($filesql))
  981. {
  982. DoDelFile($filer);
  983. }
  984. $empire->query("delete from {$dbtbpre}enewsfile_".$dtbr[$i]." where ".$where);
  985. }
  986. }
  987. }
  988. //按条件删除信息评论
  989. function DelPlAllTable($where){
  990. global $empire,$dbtbpre,$public_r;
  991. if(empty($where))
  992. {
  993. return '';
  994. }
  995. if($public_r['pldatatbs'])
  996. {
  997. $pldtbr=explode(',',$public_r['pldatatbs']);
  998. $count=count($pldtbr)-1;
  999. for($i=1;$i<$count;$i++)
  1000. {
  1001. $empire->query("delete from {$dbtbpre}enewspl_".$pldtbr[$i]." where ".$where);
  1002. }
  1003. }
  1004. }
  1005. //更新相应的附件
  1006. function UpdateTheFile($id,$checkpass,$classid,$fstb=1){
  1007. global $empire,$dbtbpre;
  1008. if(empty($id)||empty($checkpass))
  1009. {
  1010. return "";
  1011. }
  1012. $id=(int)$id;
  1013. $checkpass=(int)$checkpass;
  1014. $classid=(int)$classid;
  1015. $pubid=ReturnInfoPubid($classid,$id);
  1016. $sql=$empire->query("update {$dbtbpre}enewsfile_{$fstb} set pubid='$pubid',classid='$classid',id='$id',cjid=0 where cjid='$checkpass'");
  1017. }
  1018. //修改时更新附件
  1019. function UpdateTheFileEdit($classid,$id,$fstb=1){
  1020. global $empire,$dbtbpre;
  1021. $pubid=ReturnInfoPubid($classid,$id);
  1022. $sql=$empire->query("update {$dbtbpre}enewsfile_{$fstb} set pubid='$pubid',cjid=0 where id='$id' and classid='$classid'");
  1023. }
  1024. //获取信息分表
  1025. function GetInfoTranFstb($classid,$id,$fstb){
  1026. global $empire,$dbtbpre,$public_r,$class_r;
  1027. if($id)
  1028. {
  1029. $classid=(int)$classid;
  1030. $id=(int)$id;
  1031. if(!$classid||!$class_r[$classid]['tbname'])
  1032. {
  1033. return $public_r['filedeftb'];
  1034. }
  1035. $index_r=$empire->fetch1("select id,classid,checked from {$dbtbpre}ecms_".$class_r[$classid]['tbname']."_index where id='$id' limit 1");
  1036. if(!$index_r['id'])
  1037. {
  1038. return $public_r['filedeftb'];
  1039. }
  1040. //主表
  1041. $infotb=ReturnInfoMainTbname($class_r[$classid]['tbname'],$index_r['checked']);//返回表
  1042. $infor=$empire->fetch1("select fstb from ".$infotb." where id='$id' limit 1");
  1043. $fstb=$infor['fstb'];
  1044. }
  1045. elseif($fstb)
  1046. {
  1047. $fstb=eReturnFileStb($fstb);
  1048. }
  1049. else
  1050. {
  1051. $fstb=$public_r['filedeftb'];
  1052. }
  1053. $fstb=(int)$fstb;
  1054. return $fstb;
  1055. }
  1056. //更新ispic标识
  1057. function UpdateTheIspic($classid,$id,$checked){
  1058. global $empire,$dbtbpre,$class_r;
  1059. $infotb=empty($checked)?$dbtbpre.'ecms_'.$class_r[$classid][tbname].'_check':$dbtbpre.'ecms_'.$class_r[$classid][tbname];
  1060. $r=$empire->fetch1("select titlepic,ispic from ".$infotb." where id='$id' limit 1");
  1061. $ispic=$r['titlepic']?1:0;
  1062. if($ispic<>$r['ispic'])
  1063. {
  1064. $empire->query("update ".$infotb." set ispic='$ispic' where id='$id'");
  1065. }
  1066. }
  1067. //取第几张图片
  1068. function GetFpicToTpic($classid,$id,$num=1,$getfirsttitlespic=0,$swidth=0,$sheight=0,$fstb=1){
  1069. global $empire,$dbtbpre,$public_r,$class_r,$loginin,$logininid;
  1070. $pubid=ReturnInfoPubid($classid,$id);
  1071. $num=(int)$num;
  1072. $num=$num-1;
  1073. if($num<0)
  1074. {
  1075. return '';
  1076. }
  1077. $logininid=(int)$logininid;
  1078. $loginin=RepPostVar($loginin);
  1079. $picr=$empire->fetch1("select fileid,filename,path,id,classid,no,fpath from {$dbtbpre}enewsfile_{$fstb} where pubid='$pubid' and type=1 order by fileid limit $num,1");
  1080. $firsttitlepic="";
  1081. if($picr['fileid'])
  1082. {
  1083. $rpath=$picr['path']?$picr['path'].'/':$picr['path'];
  1084. $fspath=ReturnFileSavePath($picr[classid],$picr[fpath]);
  1085. if($getfirsttitlespic==1&&$swidth&&$sheight)//缩略图
  1086. {
  1087. $path=eReturnEcmsMainPortPath().$fspath['filepath'].$rpath;//moreport
  1088. $yname=$path.$picr[filename];
  1089. $filetype=GetFiletype($picr[filename]);
  1090. $insertfile=substr($picr[filename],0,strlen($picr[filename])-strlen($filetype)).time();
  1091. $name=$path."small".$insertfile;
  1092. $sfiler=GetMySmallImg($classid,$picr[no],$insertfile,$picr[path],$yname,$swidth,$sheight,$name,$id,$add['filepass'],$logininid,$loginin,0,$fstb);
  1093. $firsttitlepic=$fspath['fileurl'].$rpath."small".$insertfile.$sfiler['filetype'];
  1094. }
  1095. else
  1096. {
  1097. $firsttitlepic=$fspath['fileurl'].$rpath.$picr[filename];
  1098. }
  1099. }
  1100. return $firsttitlepic;
  1101. }
  1102. //更新替换图片下一页链接内容
  1103. function UpdateImgNexturl($classid,$id,$checked=1){
  1104. global $empire,$dbtbpre,$class_r,$public_r,$emod_r;
  1105. $mid=$class_r[$classid][modid];
  1106. $tbname=$class_r[$classid][tbname];
  1107. $pf=$emod_r[$mid]['pagef'];
  1108. $stf=$emod_r[$mid]['savetxtf'];
  1109. if(!$pf)
  1110. {
  1111. return '';
  1112. }
  1113. $infotbname=$checked?$dbtbpre.'ecms_'.$tbname:$dbtbpre.'ecms_'.$tbname.'_check';
  1114. //分页字段
  1115. $tbdataf=strstr($emod_r[$mid]['tbdataf'],','.$pf.',')?1:0;
  1116. if($tbdataf)
  1117. {
  1118. $r=$empire->fetch1("select id,classid,titleurl,groupid,newspath,filename,stb from ".$infotbname." where id='$id'");
  1119. $infodatatbname=$checked?$dbtbpre.'ecms_'.$tbname.'_data_'.$r[stb]:$dbtbpre.'ecms_'.$tbname.'_check_data';
  1120. $finfor=$empire->fetch1("select ".$pf." from ".$infodatatbname." where id='$id'");
  1121. $r[$pf]=$finfor[$pf];
  1122. }
  1123. else
  1124. {
  1125. $r=$empire->fetch1("select id,classid,titleurl,groupid,newspath,filename,".$pf." from ".$infotbname." where id='$id'");
  1126. }
  1127. //存文本
  1128. if($stf&&$stf==$pf)
  1129. {
  1130. $newstextfile=$r[$stf];
  1131. $r[$stf]=GetTxtFieldText($r[$stf]);
  1132. }
  1133. if(!$r[$pf])
  1134. {
  1135. return '';
  1136. }
  1137. $newstext=RepNewstextImgLink($r[$pf],$r);
  1138. if(empty($newstext))
  1139. {
  1140. return '';
  1141. }
  1142. //存文本
  1143. if($stf&&$stf==$pf)
  1144. {
  1145. EditTxtFieldText($newstextfile,$newstext);
  1146. return '';
  1147. }
  1148. if($tbdataf)
  1149. {
  1150. $empire->query("update ".$infodatatbname." set ".$pf."='$newstext' where id='$id'");
  1151. }
  1152. else
  1153. {
  1154. $empire->query("update ".$infotbname." set ".$pf."='$newstext' where id='$id'");
  1155. }
  1156. }
  1157. //给图片加下一页链接
  1158. function RepNewstextImgLink($newstext,$add){
  1159. global $public_r;
  1160. $expage='[!--empirenews.page--]';//分页符
  1161. if(!stristr($newstext,$expage)||!stristr($newstext,'<img '))
  1162. {
  1163. return '';
  1164. }
  1165. $newstext=stripSlashes($newstext);
  1166. $repurl='[!--empirecms.rep.nextpageurl--]';
  1167. $newstext=DoRepImgLink($newstext,$repurl);
  1168. $nr=explode($expage,$newstext);
  1169. $count=count($nr);
  1170. //页面地址
  1171. $urlqzr=ReturnInfoPageQz($add);
  1172. $lastpageurl=$public_r['newsurl'].'e/public/ClassUrl/?classid='.$add['classid']; //最后一页链接地址
  1173. $new_newstext='';
  1174. $addexpage='';
  1175. for($i=0;$i<$count;$i++)
  1176. {
  1177. $thispagetext=$nr[$i];
  1178. if(stristr($thispagetext,'<img '))
  1179. {
  1180. if($i==$count-1)
  1181. {
  1182. $newurl=$lastpageurl;
  1183. }
  1184. else
  1185. {
  1186. //下一页链接
  1187. if($urlqzr['nametype']==1)
  1188. {
  1189. $newurl=eReturnRewritePageLink($urlqzr,$i+1);
  1190. }
  1191. else
  1192. {
  1193. $newurl=$urlqzr['titleurl'].'_'.($i+2).$urlqzr['filetype'];
  1194. }
  1195. }
  1196. $thispagetext=str_replace($repurl,$newurl,$thispagetext);
  1197. }
  1198. $new_newstext.=$addexpage.$thispagetext;
  1199. $addexpage=$expage;
  1200. }
  1201. return addslashes($new_newstext);
  1202. }
  1203. //返回相关链接信息ID
  1204. function GetKeyid($keyboard,$classid,$id,$link_num){
  1205. global $empire,$public_r,$class_r,$fun_r,$dbtbpre,$eyh_r,$etable_r;
  1206. if($keyboard)
  1207. {
  1208. $link_num=(int)$link_num;
  1209. if(empty($link_num))
  1210. {
  1211. return '';
  1212. }
  1213. $where='';
  1214. $add='';
  1215. $repadd='';
  1216. $classid=(int)$classid;
  1217. $id=(int)$id;
  1218. $keyboard=str_replace('[!--f--!]','ecms',$keyboard);
  1219. $keyboard=RepDyh($keyboard);
  1220. $r=explode(",",$keyboard);
  1221. for($i=0;$i<count($r);$i++)
  1222. {
  1223. if($i==0)
  1224. {
  1225. $or="";
  1226. }
  1227. else
  1228. {
  1229. $or=" or ";
  1230. }
  1231. $r[$i]=RepPostVar($r[$i]);
  1232. $repadd.=$or."[!--f--!]"." like '%".$r[$i]."%'";
  1233. }
  1234. //搜索范围
  1235. if($public_r['newslink']==1)
  1236. {
  1237. $add='('.str_replace('[!--f--!]','keyboard',$repadd).')';
  1238. }
  1239. elseif($public_r['newslink']==2)
  1240. {
  1241. $add='('.str_replace('[!--f--!]','keyboard',$repadd).' or '.str_replace('[!--f--!]','title',$repadd).')';
  1242. }
  1243. else
  1244. {
  1245. $add='('.str_replace('[!--f--!]','title',$repadd).')';
  1246. }
  1247. //模型
  1248. if(!empty($class_r[$classid][modid]))
  1249. {
  1250. $mr=$empire->fetch1("select sonclass from {$dbtbpre}enewsmod where mid='".$class_r[$classid][modid]."'");
  1251. $where=" and (".ReturnClass($mr[sonclass]).")";
  1252. }
  1253. //优化
  1254. $tbname=$class_r[$classid][tbname];
  1255. $yhvar='otherlink';
  1256. $yhid=$etable_r[$tbname][yhid];
  1257. $yhadd='';
  1258. if($yhid)
  1259. {
  1260. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  1261. }
  1262. //ID声名
  1263. $keyid="";
  1264. $first=0;
  1265. $key_sql=$empire->query("select id from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd.$add.$where." and id<>$id order by newstime desc limit $link_num");
  1266. while($link_r=$empire->fetch($key_sql))
  1267. {
  1268. if(empty($first))
  1269. {
  1270. $dh="";
  1271. $first=1;
  1272. }
  1273. else
  1274. {
  1275. $dh=",";
  1276. }
  1277. $keyid.=$dh.$link_r[id];
  1278. }
  1279. }
  1280. else
  1281. {
  1282. $keyid="";
  1283. }
  1284. return $keyid;
  1285. }
  1286. //删除信息存文本文件
  1287. function DelInfoSaveTxtfile($mid,$tbname,$where){
  1288. global $empire,$dbtbpre,$public_r,$class_r,$emod_r;
  1289. if(empty($where))
  1290. {
  1291. return '';
  1292. }
  1293. $savetxtf=$emod_r[$mid]['savetxtf'];
  1294. if($savetxtf)
  1295. {
  1296. //已审核
  1297. $txtsql=$empire->query("select ".$savetxtf." from {$dbtbpre}ecms_".$tbname." where ".$where);
  1298. while($txtr=$empire->fetch($txtsql))
  1299. {
  1300. $newstextfile=$txtr[$savetxtf];
  1301. //$txtr[$savetxtf]=GetTxtFieldText($txtr[$savetxtf]);
  1302. DelTxtFieldText($newstextfile);//删除文件
  1303. }
  1304. //未审核
  1305. $txtsql=$empire->query("select ".$savetxtf." from {$dbtbpre}ecms_".$tbname."_check where ".$where);
  1306. while($txtr=$empire->fetch($txtsql))
  1307. {
  1308. $newstextfile=$txtr[$savetxtf];
  1309. //$txtr[$savetxtf]=GetTxtFieldText($txtr[$savetxtf]);
  1310. DelTxtFieldText($newstextfile);//删除文件
  1311. }
  1312. //归档
  1313. $txtsql=$empire->query("select ".$savetxtf." from {$dbtbpre}ecms_".$tbname."_doc where ".$where);
  1314. while($txtr=$empire->fetch($txtsql))
  1315. {
  1316. $newstextfile=$txtr[$savetxtf];
  1317. //$txtr[$savetxtf]=GetTxtFieldText($txtr[$savetxtf]);
  1318. DelTxtFieldText($newstextfile);//删除文件
  1319. }
  1320. }
  1321. }
  1322. //删除信息相关记录
  1323. function DelSingleInfoOtherData($classid,$id,$r,$delfile=0,$delpl=0){
  1324. global $empire,$dbtbpre,$public_r,$class_r,$emod_r;
  1325. $pubid=ReturnInfoPubid($classid,$id);
  1326. //删除其它表记录
  1327. $empire->query("delete from {$dbtbpre}enewswfinfo where id='$id' and classid='$classid'");
  1328. $empire->query("delete from {$dbtbpre}enewswfinfolog where id='$id' and classid='$classid'");
  1329. $empire->query("delete from {$dbtbpre}enewsinfovote where pubid='$pubid'");
  1330. $empire->query("delete from {$dbtbpre}enewsdiggips where id='$id' and classid='$classid'");
  1331. $empire->query("delete from {$dbtbpre}enewsztinfo where id='$id' and classid='$classid'");
  1332. if($delfile==0)
  1333. {
  1334. DelNewsTheFile($id,$classid,$r['fstb'],$delpl,$r['restb']);//删除附件
  1335. }
  1336. }
  1337. //删除信息相关记录(整栏目)
  1338. function DelMoreInfoOtherData($classid,$delfile=0,$delpl=0){
  1339. global $empire,$dbtbpre,$public_r,$class_r,$emod_r;
  1340. //删除其它表记录
  1341. $empire->query("delete from {$dbtbpre}enewswfinfo where classid='$classid'");
  1342. $empire->query("delete from {$dbtbpre}enewswfinfolog where classid='$classid'");
  1343. $empire->query("delete from {$dbtbpre}enewsinfovote where classid='$classid'");
  1344. $empire->query("delete from {$dbtbpre}enewsdiggips where classid='$classid'");
  1345. $empire->query("delete from {$dbtbpre}enewsztinfo where classid='$classid'");
  1346. //附件
  1347. if($delfile==0)
  1348. {
  1349. DelFileAllTable("classid='$classid'");
  1350. }
  1351. //评论
  1352. if($delpl==0)
  1353. {
  1354. DelPlAllTable("classid='$classid'");
  1355. }
  1356. }
  1357. //更新信息相关记录
  1358. function UpdateSingleInfoOtherData($classid,$id,$to_classid,$r,$updatefile=0,$updatepl=0){
  1359. global $empire,$dbtbpre,$public_r,$class_r,$emod_r;
  1360. $pubid=ReturnInfoPubid($classid,$id);
  1361. //更新其它表记录
  1362. $empire->query("update {$dbtbpre}enewswfinfo set classid='$to_classid' where id='$id' and classid='$classid'");
  1363. $empire->query("update {$dbtbpre}enewswfinfolog set classid='$to_classid' where id='$id' and classid='$classid'");
  1364. $empire->query("update {$dbtbpre}enewsinfovote set classid='$to_classid' where pubid='$pubid'");
  1365. $empire->query("update {$dbtbpre}enewsdiggips set classid='$to_classid' where id='$id' and classid='$classid'");
  1366. $empire->query("update {$dbtbpre}enewsztinfo set classid='$to_classid' where id='$id' and classid='$classid'");
  1367. //附件
  1368. if($updatefile==0)
  1369. {
  1370. $empire->query("update {$dbtbpre}enewsfile_".$r['fstb']." set classid='$to_classid' where pubid='$pubid'");
  1371. }
  1372. //评论
  1373. if($updatepl==0)
  1374. {
  1375. $empire->query("update {$dbtbpre}enewspl_".$r['restb']." set classid='$to_classid' where pubid='$pubid'");
  1376. }
  1377. }
  1378. //更新信息相关记录(整栏目)
  1379. function UpdateMoreInfoOtherData($classid,$to_classid,$updatefile=0,$updatepl=0){
  1380. global $empire,$dbtbpre,$public_r,$class_r,$emod_r;
  1381. //更新其它表记录
  1382. $empire->query("update {$dbtbpre}enewswfinfo set classid='$to_classid' where classid='$classid'");
  1383. $empire->query("update {$dbtbpre}enewswfinfolog set classid='$to_classid' where classid='$classid'");
  1384. $empire->query("update {$dbtbpre}enewsinfovote set classid='$to_classid' where classid='$classid'");
  1385. $empire->query("update {$dbtbpre}enewsdiggips set classid='$to_classid' where classid='$classid'");
  1386. $empire->query("update {$dbtbpre}enewsztinfo set classid='$to_classid' where classid='$classid'");
  1387. //附件
  1388. if($updatefile==0)
  1389. {
  1390. if($public_r['filedatatbs'])
  1391. {
  1392. $dtbr=explode(',',$public_r['filedatatbs']);
  1393. $count=count($dtbr);
  1394. for($i=1;$i<$count-1;$i++)
  1395. {
  1396. $empire->query("update {$dbtbpre}enewsfile_".$dtbr[$i]." set classid='$to_classid' where classid='$classid'");
  1397. }
  1398. }
  1399. }
  1400. //评论
  1401. if($updatepl==0)
  1402. {
  1403. if($public_r['pldatatbs'])
  1404. {
  1405. $pldtbr=explode(',',$public_r['pldatatbs']);
  1406. $count=count($pldtbr)-1;
  1407. for($i=1;$i<$count;$i++)
  1408. {
  1409. $empire->query("update {$dbtbpre}enewspl_".$pldtbr[$i]." set classid='$to_classid' where classid='$classid'");
  1410. }
  1411. }
  1412. }
  1413. }
  1414. //删除信息附件
  1415. function DelNewsTheFile($id,$classid,$fstb='1',$delpl=0,$restb='1'){
  1416. global $empire,$dbtbpre;
  1417. if(empty($id))
  1418. {
  1419. return "";
  1420. }
  1421. $pubid=ReturnInfoPubid($classid,$id);
  1422. $i=0;
  1423. $sql=$empire->query("select classid,filename,path,fpath from {$dbtbpre}enewsfile_{$fstb} where pubid='$pubid'");
  1424. while($r=$empire->fetch($sql))
  1425. {
  1426. $i=1;
  1427. DoDelFile($r);
  1428. }
  1429. if($i)
  1430. {
  1431. $empire->query("delete from {$dbtbpre}enewsfile_{$fstb} where pubid='$pubid'");
  1432. }
  1433. //删除评论
  1434. if($delpl==0)
  1435. {
  1436. $empire->query("delete from {$dbtbpre}enewspl_{$restb} where pubid='$pubid'");
  1437. }
  1438. }
  1439. //删除信息文件
  1440. function DelNewsFile($filename,$newspath,$classid,$newstext,$groupid=0){
  1441. global $class_r,$addgethtmlpath;
  1442. if(!trim($filename)||!$classid||!$class_r[$classid][classpath])
  1443. {
  1444. return '';
  1445. }
  1446. if(strstr($filename,'/'))
  1447. {
  1448. $etfilename=ReturnInfoSPath($filename);
  1449. if(!trim($etfilename)||strstr($etfilename,'/'))
  1450. {
  1451. return '';
  1452. }
  1453. }
  1454. //文件类型
  1455. if($groupid)
  1456. {
  1457. $filetype=".php";
  1458. }
  1459. else
  1460. {
  1461. $filetype=$class_r[$classid][filetype];
  1462. }
  1463. //是否有日期目录
  1464. if(empty($newspath))
  1465. {
  1466. $mynewspath="";
  1467. }
  1468. else
  1469. {
  1470. $mynewspath=$newspath."/";
  1471. }
  1472. $iclasspath=ReturnSaveInfoPath($classid,$id);
  1473. $r=explode("[!--empirenews.page--]",$newstext);
  1474. $pagecount=count($r);
  1475. for($i=1;$i<=$pagecount;$i++)
  1476. {
  1477. if(strstr($filename,'/'))
  1478. {
  1479. DelPath(eReturnTrueEcmsPath().$iclasspath.$mynewspath.ReturnInfoSPath($filename));
  1480. break;
  1481. }
  1482. else
  1483. {
  1484. if($i==1)
  1485. {
  1486. $file=eReturnTrueEcmsPath().$iclasspath.$mynewspath.$filename.$filetype;
  1487. }
  1488. else
  1489. {
  1490. $file=eReturnTrueEcmsPath().$iclasspath.$mynewspath.$filename."_".$i.$filetype;
  1491. }
  1492. DelFiletext($file);
  1493. }
  1494. }
  1495. //moreportdo
  1496. if($filename)
  1497. {
  1498. if(strstr($filename,'/'))
  1499. {
  1500. $eautodofile=$iclasspath.$mynewspath.ReturnInfoSPath($filename);
  1501. $eautodofname='delpath|'.$eautodofile.'||';
  1502. eAutodo_AddDo('eDelFileInfo',0,0,0,0,0,$eautodofname);
  1503. }
  1504. else
  1505. {
  1506. $eautodofile=$iclasspath.$mynewspath.$filename;
  1507. $eautodofname='delfile|'.$eautodofile.'|'.$filetype.'|'.$pagecount;
  1508. eAutodo_AddDo('eDelFileInfo',0,0,0,0,0,$eautodofname);
  1509. }
  1510. }
  1511. }
  1512. //删除专题子类列表文件
  1513. function DelZtcFile($cid,$cr){
  1514. global $empire,$dbtbpre,$class_zr;
  1515. //$cr=$empire->fetch1("select ztid,islist,maxnum,tnum,ttype,tfile from {$dbtbpre}enewszttype where cid='$cid'");
  1516. if(!$cr['ztid'])
  1517. {
  1518. return '';
  1519. }
  1520. //文件类型
  1521. $filetype=$cr['ttype'];
  1522. $tfile=$cr['tfile'];
  1523. $doclasspath=ReturnSaveZtPath($cr['ztid'],0);
  1524. $dopath=ECMS_PATH.$doclasspath."/";
  1525. //单页
  1526. if($cr['islist']!=1)
  1527. {
  1528. $file=$dopath.$tfile.$filetype;
  1529. DelFiletext($file);
  1530. //moreportdo
  1531. if($tfile)
  1532. {
  1533. $eautodofile=$doclasspath."/".$tfile.$filetype;
  1534. $eautodofname='delfile|'.$eautodofile.'||';
  1535. eAutodo_AddDo('eDelFileZTC',0,0,0,0,0,$eautodofname);
  1536. }
  1537. return '';
  1538. }
  1539. //数量
  1540. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsztinfo where cid='$cid'");
  1541. if(!$num)
  1542. {
  1543. $num=1;
  1544. }
  1545. $totalpage=ceil($num/$cr['tnum']);
  1546. for($i=1;$i<=$totalpage;$i++)
  1547. {
  1548. if($i==1)
  1549. {
  1550. $file=$dopath.$tfile.$filetype;
  1551. }
  1552. else
  1553. {
  1554. $file=$dopath.$tfile.'_'.$i.$filetype;
  1555. }
  1556. DelFiletext($file);
  1557. }
  1558. //moreportdo
  1559. if($tfile)
  1560. {
  1561. $eautodofile=$doclasspath."/".$tfile;
  1562. $eautodofname='delfile|'.$eautodofile.'|'.$filetype.'|'.$totalpage;
  1563. eAutodo_AddDo('eDelFileZTC',0,0,0,0,0,$eautodofname);
  1564. }
  1565. }
  1566. //替换图片标签
  1567. function RepImg($text,$copyflash){
  1568. global $ecms_config;
  1569. $exp1="[--copyimg--]";
  1570. $exp2="[/--copyimg--]";
  1571. //去掉图片链接
  1572. if($ecms_config['sets']['saveurlimgclearurl']==1)
  1573. {
  1574. $zz2="/\<(a|A) (.*?)(href|Href)=('|\"|\\\\\"|)(.+?)><(img|IMG) (.*?)(src|SRC)=('|\"|\\\\\"|)(.+?)(\.jpg|\.JPG|\.gif|\.GIF|\.png|\.PNG|\.bmp|\.BMP|\.jpeg|\.JPEG)(.*?)><\/(a|A)>/is";
  1575. $text=preg_replace($zz2,"<\\6 \\7\\8=\\9\\10\\11\\12>",$text);
  1576. }
  1577. $zz1="/\<(img|IMG) (.*?)(src|SRC)=('|\"|\\\\\"|)(.+?)(\.jpg|\.JPG|\.gif|\.GIF|\.png|\.PNG|\.bmp|\.BMP|\.jpeg|\.JPEG)(.*?)>/is";
  1578. $text=preg_replace($zz1,"<\\1 \\2\\3=\\4".$exp1."\\5\\6".$exp2."\\7>",$text);
  1579. return $text;
  1580. }
  1581. //替换flash标签
  1582. function RepFlash($text,$copyflash){
  1583. $exp1="[--copyimg--]";
  1584. $exp2="[/--copyimg--]";
  1585. //去掉flash多余链接
  1586. $zz2="/\<(embed|EMBED) (.*?)(src|SRC)=('|\"|\\\\\"|)(.+?)(\.swf|\.SWF)(.*?)>(.*?)<\/(embed|EMBED)>/is";
  1587. $text=preg_replace($zz2,"",$text);
  1588. $zz3="/\<(param|PARAM) (name|NAME)=\"(Src|src|SRC)\" (.*?)(value|VALUE)=('|\"|\\\\\"|)(.+?)(\.swf|\.SWF)(.*?)>/is";
  1589. $text=preg_replace($zz3,"",$text);
  1590. $zz1="/\<(param|PARAM) (.*?)(name|NAME)=\"(movie|MOVIE)\" (.*?)(value|VALUE)=('|\"|\\\\\"|)(.+?)(\.swf|.SWF)(\.*?)>/is";
  1591. $text=preg_replace($zz1,"<\\1 \\2\\3=\"\\4\" \\5\\6=\\7".$exp1."\\8\\9".$exp2."\\10>",$text);
  1592. return $text;
  1593. }
  1594. //替换图片链接
  1595. function DoRepImgLink($text,$newurl){
  1596. //去掉图片链接
  1597. $zz2="/\<(a|A) (.*?)(href|Href)=('|\"|\\\\\"|)(.+?)><(img|IMG) (.*?)(src|SRC)=('|\"|\\\\\"|)(.*?)><\/(a|A)>/is";
  1598. $text=preg_replace($zz2,"<\\6 \\7\\8=\\9\\10>",$text);
  1599. //新链接
  1600. $zz1="/\<(img|IMG) (.*?)(src|SRC)=('|\"|\\\\\"|)(.*?)>/is";
  1601. $text=preg_replace($zz1,"<a href=\"".$newurl."\"><\\1 \\2\\3=\\4\\5></a>",$text);
  1602. return $text;
  1603. }
  1604. //截取图片
  1605. function CopyImg($text,$copyimg,$copyflash,$classid,$qz,$username,$theid,$cjid,$mark,$fstb=1){
  1606. global $empire,$public_r,$cjnewsurl,$navtheid,$dbtbpre;
  1607. if(empty($text))
  1608. {return "";}
  1609. $navtheid=(int)$navtheid;
  1610. $fstb=(int)$fstb;
  1611. if($copyimg)
  1612. {
  1613. $text=RepImg($text,$copyflash);
  1614. }
  1615. if($copyflash)
  1616. {$text=RepFlash($text,$copyflash);}
  1617. $exp1="[--copyimg--]";
  1618. $exp2="[/--copyimg--]";
  1619. $r=explode($exp1,$text);
  1620. for($i=1;$i<count($r);$i++)
  1621. {
  1622. $r1=explode($exp2,$r[$i]);
  1623. if(strstr($r1[0],"http://")||strstr($r1[0],"https://"))
  1624. {
  1625. $dourl=$r1[0];
  1626. }
  1627. else
  1628. {
  1629. //是否是本地址
  1630. if(!strstr($r1[0],"/")&&$cjnewsurl)
  1631. {
  1632. $fileqz_r=GetPageurlQz($cjnewsurl);
  1633. $fileqz=$fileqz_r['selfqz'];
  1634. $dourl=$fileqz.$r1[0];
  1635. }
  1636. else
  1637. {
  1638. $dourl=$qz.$r1[0];
  1639. }
  1640. }
  1641. $return_r=DoTranUrl($dourl,$classid);
  1642. $text=str_replace($exp1.$r1[0].$exp2,$return_r[url],$text);
  1643. if($return_r[tran])
  1644. {
  1645. //记录数据库
  1646. //变量处理
  1647. $return_r[filesize]=(int)$return_r[filesize];
  1648. $classid=(int)$classid;
  1649. $return_r[type]=(int)$return_r[type];
  1650. $theid=(int)$theid;
  1651. $cjid=(int)$cjid;
  1652. eInsertFileTable($return_r[filename],$return_r[filesize],$return_r[filepath],$username,$classid,'[URL]'.$return_r[filename],$return_r[type],$theid,$cjid,$public_r[fpath],0,0,$fstb);
  1653. //加水
  1654. if($mark&&$return_r[type]==1)
  1655. {
  1656. GetMyMarkImg($return_r['yname']);
  1657. }
  1658. }
  1659. }
  1660. return $text;
  1661. }
  1662. //生成缩略图
  1663. function GetMySmallImg($classid,$no,$insertfile,$filepath,$yname,$maxwidth,$maxheight,$name,$id,$cjid,$userid,$username,$modtype=0,$fstb=1){
  1664. global $empire,$dbtbpre,$public_r,$efileftp_fr;
  1665. if(empty($yname))
  1666. {
  1667. return "";
  1668. }
  1669. $no="[s]".$no;
  1670. $maxwidth=(int)$maxwidth;
  1671. $maxheight=(int)$maxheight;
  1672. $filer=ResizeImage($yname,$name,$maxwidth,$maxheight,$public_r['spickill']);
  1673. if($filer['file'])
  1674. {
  1675. $insertfile="small".$insertfile.$filer['filetype'];
  1676. $filesize=@filesize($filer['file']);
  1677. //写入数据库
  1678. $pubid=0;
  1679. if($id&&!$cjid)
  1680. {
  1681. $pubid=ReturnInfoPubid($classid,$id);
  1682. }
  1683. //变量处理
  1684. $filesize=(int)$filesize;
  1685. $classid=(int)$classid;
  1686. $id=(int)$id;
  1687. $cjid=(int)$cjid;
  1688. eInsertFileTable($insertfile,$filesize,$filepath,$username,$classid,$no,1,$id,$cjid,$public_r[fpath],$pubid,$modtype,$fstb);
  1689. //FileServer
  1690. if($public_r['openfileserver'])
  1691. {
  1692. $efileftp_fr[]=$name.$filer['filetype'];
  1693. }
  1694. }
  1695. return $filer;
  1696. }
  1697. //图片加水印
  1698. function GetMyMarkImg($groundImage){
  1699. global $public_r;
  1700. if(empty($groundImage))
  1701. {
  1702. return "";
  1703. }
  1704. imageWaterMark($groundImage,$public_r['markpos'],$public_r['markimg'],$public_r['marktext'],$public_r['markfontsize'],$public_r['markfontcolor'],$public_r['markfont'],$public_r['markpct'],$public_r['jpgquality']);
  1705. }
  1706. //投票组合
  1707. function ReturnVote($votename,$votenum,$delvid,$vid,$enews=0){
  1708. global $empire,$dbtbpre;
  1709. $f_exp="::::::";
  1710. $r_exp="\r\n";
  1711. $returnstr="";
  1712. //增加投票
  1713. if(empty($enews))
  1714. {
  1715. for($i=0;$i<count($votename);$i++)
  1716. {
  1717. //替换非法字符
  1718. $name=str_replace($f_exp,"",$votename[$i]);
  1719. $name=str_replace($r_exp,"",$name);
  1720. $num=str_replace($f_exp,"",$votenum[$i]);
  1721. $num=str_replace($r_exp,"",$num);
  1722. if($name)
  1723. {
  1724. if(empty($num))
  1725. {$num=0;}
  1726. $returnstr.=$name.$f_exp.$num.$r_exp;
  1727. }
  1728. }
  1729. }
  1730. //修改投票
  1731. else
  1732. {
  1733. for($i=0;$i<count($votename);$i++)
  1734. {
  1735. //删除下载地址
  1736. $del=0;
  1737. for($j=0;$j<count($delvid);$j++)
  1738. {
  1739. if($delvid[$j]==$vid[$i])
  1740. {$del=1;}
  1741. }
  1742. if($del)
  1743. {continue;}
  1744. //替换非法字符
  1745. $name=str_replace($f_exp,"",$votename[$i]);
  1746. $name=str_replace($r_exp,"",$name);
  1747. $num=str_replace($f_exp,"",$votenum[$i]);
  1748. $num=str_replace($r_exp,"",$num);
  1749. if($name)
  1750. {
  1751. if(empty($num))
  1752. {$num=0;}
  1753. $returnstr.=$name.$f_exp.$num.$r_exp;
  1754. }
  1755. }
  1756. }
  1757. /*
  1758. if(empty($returnstr))
  1759. {printerror("EmptyVotenum","history.go(-1)");}
  1760. */
  1761. //去掉最后的字符
  1762. $returnstr=substr($returnstr,0,strlen($returnstr)-2);
  1763. return $returnstr;
  1764. }
  1765. //显示无限级栏目[增加栏目时]
  1766. function ShowClass_AddClass($adminclass,$obclassid,$bclassid,$exp,$modid,$enews=0,$addminfocid=''){
  1767. global $empire,$dbtbpre,$public_r;
  1768. if(empty($bclassid))
  1769. {
  1770. $bclassid=0;
  1771. $exp="|-";
  1772. if($enews==2)
  1773. {
  1774. $modr=$empire->fetch1("select sonclass from {$dbtbpre}enewsmod where mid='$modid'");
  1775. $addminfocid=$modr['sonclass'];
  1776. }
  1777. }
  1778. else
  1779. {$exp="&nbsp;&nbsp;".$exp;}
  1780. $sql=$empire->query("select classid,classname,bclassid,islast,openadd,modid,sonclass from {$dbtbpre}enewsclass where bclassid='$bclassid' and wburl='' order by myorder,classid");
  1781. $returnstr="";
  1782. while($r=$empire->fetch($sql))
  1783. {
  1784. //投稿显示
  1785. if($enews==2)
  1786. {
  1787. if($r[openadd])
  1788. {
  1789. continue;
  1790. }
  1791. if(CheckHaveInClassid($r,$addminfocid)==0)
  1792. {
  1793. continue;
  1794. }
  1795. }
  1796. if($r[islast])
  1797. {
  1798. if(empty($enews)||$enews==2||$enews==3||$enews==4)
  1799. {
  1800. $color=" style='background:#".$public_r['chclasscolor']."'";
  1801. }
  1802. //隐藏不能投稿的栏目
  1803. if($enews==2)
  1804. {
  1805. if($modid)
  1806. {
  1807. if($r[modid]<>$modid)
  1808. {continue;}
  1809. }
  1810. }
  1811. //模型
  1812. if($enews==4)
  1813. {
  1814. if($r[modid]<>$modid)
  1815. {continue;}
  1816. }
  1817. }
  1818. else
  1819. {$color="";}
  1820. if($r[classid]==$obclassid)
  1821. {$select=" selected";}
  1822. else
  1823. {$select="";}
  1824. //-----------增加用户时
  1825. if($enews==3)
  1826. {
  1827. $c=explode("|".$r[classid]."|",$adminclass);
  1828. if(count($c)>1)
  1829. {$select=" selected";}
  1830. else
  1831. {$select="";}
  1832. }
  1833. $returnstr.="<option value=".$r[classid].$select.$color.">".$exp.$r[classname]."</option>";
  1834. if(empty($r[islast]))
  1835. {
  1836. $returnstr.=ShowClass_AddClass($adminclass,$obclassid,$r[classid],$exp,$modid,$enews,$addminfocid);
  1837. }
  1838. }
  1839. return $returnstr;
  1840. }
  1841. //设置伸缩
  1842. function SetDisplayClass($open){
  1843. $time=time()+365*24*3600;
  1844. $set=esetcookie("displayclass",$open,$time,1);
  1845. echo"<script>self.location.href='ListClass.php".hReturnEcmsHashStrHref2(1)."';</script>";
  1846. exit();
  1847. }
  1848. //删除目录函数
  1849. function DelPath($DelPath){
  1850. if($DelPath=="../../"||$DelPath=="../../d/file/")
  1851. {return "";}
  1852. $wm_chief=new del_path();
  1853. $wm_chief_ok=$wm_chief->wm_chief_delpath($DelPath);
  1854. return $wm_chief_ok;
  1855. }
  1856. //复制目录
  1857. function CopyPath($oldpath,$newpath){
  1858. $wm_chief=new copy_path();
  1859. $wm_chief_ok=$wm_chief->wm_chief_copypath($oldpath,$newpath);
  1860. return $wm_chief_ok;
  1861. }
  1862. //移动目录
  1863. function MovePath($oldpath,$newpath){
  1864. //复制
  1865. CopyPath($oldpath,$newpath);
  1866. //删除
  1867. DelPath($oldpath);
  1868. }
  1869. //替换字符
  1870. function RepInfoZZ($text,$exp,$enews=0){
  1871. $text=str_replace(".","\\.",$text);
  1872. $text=str_replace("(","\\(",$text);
  1873. $text=str_replace(")","\\)",$text);
  1874. $text=str_replace("?","\\?",$text);
  1875. $text=str_replace("*","(.*?)",$text);
  1876. $text=str_replace("[!--".$exp."--]","(.*?)",$text);
  1877. //$text=str_replace("\\","\\\\",$text);
  1878. //$text=str_replace("\"","\"",$text);
  1879. $text=str_replace("/","\\/",$text);
  1880. $text=str_replace("-","\\-",$text);
  1881. $text=str_replace("|","\\|",$text);
  1882. $text=str_replace("+","\\+",$text);
  1883. $text=str_replace("^","\\^",$text);
  1884. $text=str_replace("{","\\{",$text);
  1885. $text=str_replace("}","\\}",$text);
  1886. $text=str_replace("[","\\[",$text);
  1887. $text=str_replace("]","\\]",$text);
  1888. $text=str_replace("\$","\\\$",$text);
  1889. $text="/".$text."/is";
  1890. return $text;
  1891. }
  1892. //取得地址前缀
  1893. function GetPageurlQz($self){
  1894. $sr=explode("/",$self);
  1895. $count=count($sr)-1;
  1896. $sfile=$sr[$count];
  1897. $r['selfqz']=substr($self,0,strlen($self)-strlen($sfile));
  1898. //取得域名
  1899. $expstr=stristr($self,'https://')?'https://':'http://';
  1900. $sr1=explode($expstr,$self);
  1901. $sr2=explode("/",$sr1[1]);
  1902. $r['domain']=$expstr.$sr2[0];
  1903. return $r;
  1904. }
  1905. //去掉单引号
  1906. function RepDyh($text){
  1907. //$text=str_replace("\'","\\\'",stripSlashes($text));
  1908. $text=addslashes(stripSlashes($text));
  1909. return $text;
  1910. }
  1911. //补零
  1912. function AddNumZero($no,$endno){
  1913. $len=strlen($endno);
  1914. $forlen=$len-strlen($no);
  1915. for($i=1;$i<=$forlen;$i++)
  1916. {
  1917. $no="0".$no;
  1918. }
  1919. return $no;
  1920. }
  1921. //自动分页
  1922. function AutoDoPage($mybody,$spsize){
  1923. $sptag="[!--empirenews.page--]";
  1924. if(strlen($mybody)<$spsize) return $mybody;
  1925. $bds = explode('<',$mybody);
  1926. $npageBody = "";
  1927. $istable = 0;
  1928. $mybody = "";
  1929. foreach($bds as $i=>$k)
  1930. {
  1931. if($i==0){ $npageBody .= $bds[$i]; continue;}
  1932. $bds[$i] = "<".$bds[$i];
  1933. if(strlen($bds[$i])>6){
  1934. $tname = substr($bds[$i],1,5);
  1935. if(strtolower($tname)=='table') $istable++;
  1936. else if(strtolower($tname)=='/tabl') $istable--;
  1937. if($istable>0){ $npageBody .= $bds[$i]; continue; }
  1938. else $npageBody .= $bds[$i];
  1939. }else{
  1940. $npageBody .= $bds[$i];
  1941. }
  1942. if(strlen($npageBody)>$spsize){
  1943. $mybody .= $npageBody.$sptag;
  1944. $npageBody = "";
  1945. }
  1946. }
  1947. if($npageBody!="") $mybody .= $npageBody;
  1948. return $mybody;
  1949. }
  1950. //-------------- 模板区 ----------------------
  1951. //取得模型ID
  1952. function GetListtempMid($tempid){
  1953. global $empire;
  1954. $r=$empire->fetch1("select modid from ".GetTemptb("enewslisttemp")." where tempid='$tempid'");
  1955. return $r[modid];
  1956. }
  1957. //替换模板JS地址
  1958. function RepTemplateJsUrl($temp,$classid,$enews=0){
  1959. global $public_r,$class_r,$class_zr;
  1960. $allpath='[!--news.url--]d/js/js/';
  1961. $temp=str_replace("[!--hotnews--]","<script src='".$allpath."hotnews.js'></script>",$temp);
  1962. $temp=str_replace("[!--newnews--]","<script src='".$allpath."newnews.js'></script>",$temp);
  1963. $temp=str_replace("[!--goodnews--]","<script src='".$allpath."goodnews.js'></script>",$temp);
  1964. $temp=str_replace("[!--hotplnews--]","<script src='".$allpath."hotplnews.js'></script>",$temp);
  1965. $temp=str_replace("[!--firstnews--]","<script src='".$allpath."firstnews.js'></script>",$temp);
  1966. if(!empty($classid))
  1967. {
  1968. $path=$enews==1?'[!--news.url--]d/js/class/zt[!--self.classid--]_':'[!--news.url--]d/js/class/class[!--self.classid--]_';
  1969. $temp=str_replace("[!--self.hotnews--]","<script src='".$path."hotnews.js'></script>",$temp);
  1970. $temp=str_replace("[!--self.newnews--]","<script src='".$path."newnews.js'></script>",$temp);
  1971. $temp=str_replace("[!--self.goodnews--]","<script src='".$path."goodnews.js'></script>",$temp);
  1972. $temp=str_replace("[!--self.hotplnews--]","<script src='".$path."hotplnews.js'></script>",$temp);
  1973. $temp=str_replace("[!--self.firstnews--]","<script src='".$path."firstnews.js'></script>",$temp);
  1974. }
  1975. return $temp;
  1976. }
  1977. //-------------- 生成区 ----------------------
  1978. //取得列表模板
  1979. function GetListTemp($tempid){
  1980. global $empire;
  1981. $r=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewslisttemp")." where tempid='$tempid'");
  1982. $r[temptext]=InfoNewsBq('list'.$tempid,$r[temptext]);
  1983. return $r;
  1984. }
  1985. //取得封面模板
  1986. function GetClassTemp($tempid){
  1987. global $empire;
  1988. $r=$empire->fetch1("select temptext from ".GetTemptb("enewsclasstemp")." where tempid='$tempid'");
  1989. return $r['temptext'];
  1990. }
  1991. //取得栏目页面内容
  1992. function GetClassText($classid){
  1993. global $empire,$dbtbpre;
  1994. $r=$empire->fetch1("select classtext from {$dbtbpre}enewsclassadd where classid='$classid'");
  1995. return $r['classtext'];
  1996. }
  1997. //取得专题页面内容
  1998. function GetZtText($ztid){
  1999. global $empire,$dbtbpre;
  2000. $r=$empire->fetch1("select classtext from {$dbtbpre}enewsztadd where ztid='$ztid'");
  2001. return $r['classtext'];
  2002. }
  2003. //取得专题子类页面内容
  2004. function GetZtcText($cid){
  2005. global $empire,$dbtbpre;
  2006. $r=$empire->fetch1("select classtext from {$dbtbpre}enewszttypeadd where cid='$cid'");
  2007. return $r['classtext'];
  2008. }
  2009. //取得首页模板
  2010. function GetIndextemp(){
  2011. global $empire,$dbtbpre,$public_r;
  2012. if($public_r['indexpageid'])
  2013. {
  2014. $r=$empire->fetch1("select temptext from {$dbtbpre}enewsindexpage where tempid='".$public_r['indexpageid']."'");
  2015. return $r['temptext'];
  2016. }
  2017. $r=$empire->fetch1("select indextemp from ".GetTemptb("enewspubtemp")." limit 1");
  2018. return $r['indextemp'];
  2019. }
  2020. //取得内容模板
  2021. function GetNewsTemp($newstempid){
  2022. global $empire,$public_r;
  2023. $r=$empire->fetch1("select temptext,showdate from ".GetTemptb("enewsnewstemp")." where tempid='$newstempid'");
  2024. $r[temptext]=InfoNewsBq('news'.$newstempid,$r[temptext]);
  2025. if($public_r[opennotcj])//启用反采集
  2026. {
  2027. $r[temptext]=ReturnNotcj($r[temptext]);
  2028. }
  2029. return $r;
  2030. }
  2031. //取得js模板
  2032. function GetTheJstemp($tempid){
  2033. global $empire;
  2034. $r=$empire->fetch1("select temptext,showdate,modid,subnews,subtitle from ".GetTemptb("enewsjstemp")." where tempid='$tempid'");
  2035. return $r;
  2036. }
  2037. //替换全局模板变量
  2038. function ReplaceTempvar($temp){
  2039. global $empire;
  2040. if(empty($temp))
  2041. {return $temp;}
  2042. $sql=$empire->query("select myvar,varvalue from ".GetTemptb("enewstempvar")." where isclose=0 order by myorder desc,varid");
  2043. while($r=$empire->fetch($sql))
  2044. {
  2045. $temp=str_replace('[!--temp.'.$r[myvar].'--]',$r[varvalue],$temp);
  2046. }
  2047. return $temp;
  2048. }
  2049. //栏目页替换公共标记
  2050. function Class_ReplaceSvars($temp,$url,$classid,$title,$key,$des,$classimg,$add,$enews=0){
  2051. global $public_r,$class_r,$class_zr;
  2052. $temp=str_replace('[!--class.menu--]',$public_r['classnavs'],$temp);//栏目导航
  2053. $temp=str_replace('[!--pagetitle--]',$title,$temp);
  2054. $temp=str_replace('[!--pagekey--]',$key,$temp);
  2055. $temp=str_replace('[!--pagedes--]',$des,$temp);
  2056. $temp=str_replace('[!--class.intro--]',$des,$temp);
  2057. $temp=str_replace('[!--class.keywords--]',$key,$temp);
  2058. $temp=str_replace('[!--class.classimg--]',$classimg,$temp);
  2059. $temp=str_replace('[!--self.classid--]',$classid,$temp);
  2060. if($enews==0)//栏目
  2061. {
  2062. $temp=str_replace('[!--class.name--]',$class_r[$classid]['classname'],$temp);
  2063. $bclassid=$class_r[$classid]['bclassid'];
  2064. $temp=str_replace('[!--bclass.id--]',$bclassid,$temp);
  2065. $temp=str_replace('[!--bclass.name--]',$class_r[$bclassid]['classname'],$temp);
  2066. $path=$public_r['newsurl'].'d/js/class/class'.$classid.'_';
  2067. }
  2068. else//专题
  2069. {
  2070. $temp=str_replace('[!--class.name--]',$class_zr[$classid]['ztname'],$temp);
  2071. $path=$public_r['newsurl'].'d/js/class/zt'.$classid.'_';
  2072. }
  2073. $allpath=$public_r[newsurl].'d/js/js/';
  2074. //热门文章
  2075. $temp=str_replace("[!--hotnews--]","<script src='".$allpath."hotnews.js'></script>",$temp);
  2076. $temp=str_replace("[!--self.hotnews--]","<script src='".$path."hotnews.js'></script>",$temp);
  2077. //点击排行
  2078. $temp=str_replace("[!--newnews--]","<script src='".$allpath."newnews.js'></script>",$temp);
  2079. $temp=str_replace("[!--self.newnews--]","<script src='".$path."newnews.js'></script>",$temp);
  2080. //推荐
  2081. $temp=str_replace("[!--goodnews--]","<script src='".$allpath."goodnews.js'></script>",$temp);
  2082. $temp=str_replace("[!--self.goodnews--]","<script src='".$path."goodnews.js'></script>",$temp);
  2083. //评论排行
  2084. $temp=str_replace("[!--hotplnews--]","<script src='".$allpath."hotplnews.js'></script>",$temp);
  2085. $temp=str_replace("[!--self.hotplnews--]","<script src='".$path."hotplnews.js'></script>",$temp);
  2086. //头条排行
  2087. $temp=str_replace("[!--firstnews--]","<script src='".$allpath."firstnews.js'></script>",$temp);
  2088. $temp=str_replace("[!--self.firstnews--]","<script src='".$path."firstnews.js'></script>",$temp);
  2089. $temp=str_replace('[!--news.url--]',$public_r['newsurl'],$temp);
  2090. return $temp;
  2091. }
  2092. //内容页替换公共标记
  2093. function Info_ReplaceSvars($temp,$url,$classid,$title,$key,$des){
  2094. global $public_r,$class_r;
  2095. $temp=str_replace('[!--class.menu--]',$public_r['classnavs'],$temp);//栏目导航
  2096. $temp=str_replace('[!--newsnav--]','<?=$grurl?>',$temp);//位置导航
  2097. $temp=str_replace('[!--pagetitle--]','<?=$grpagetitle?>',$temp);
  2098. $temp=str_replace('[!--pagekey--]','<?=$ecms_gr[keyboard]?>',$temp);
  2099. $temp=str_replace('[!--pagedes--]','<?=$grpagetitle?>',$temp);
  2100. $temp=str_replace('[!--self.classid--]','<?=$ecms_gr[classid]?>',$temp);
  2101. $bclassid=$class_r[$classid]['bclassid'];
  2102. $temp=str_replace('[!--bclass.id--]','<?=$grbclassid?>',$temp);
  2103. $temp=str_replace('[!--bclass.name--]','<?=$class_r[$grbclassid][classname]?>',$temp);
  2104. $temp=str_replace('[!--news.url--]',$public_r['newsurl'],$temp);
  2105. return $temp;
  2106. }
  2107. //动态内容页替换公共标记
  2108. function DtInfo_ReplaceSvars($temp,$url,$classid,$title,$key,$des){
  2109. global $public_r,$class_r;
  2110. $temp=str_replace('[!--class.menu--]',$public_r['classnavs'],$temp);//栏目导航
  2111. $temp=str_replace('[!--newsnav--]',$url,$temp);//位置导航
  2112. $temp=str_replace('[!--pagetitle--]',$title,$temp);
  2113. $temp=str_replace('[!--pagekey--]',$key,$temp);
  2114. $temp=str_replace('[!--pagedes--]',$des,$temp);
  2115. $temp=str_replace('[!--self.classid--]',$classid,$temp);
  2116. $bclassid=$class_r[$classid]['bclassid'];
  2117. $temp=str_replace('[!--bclass.id--]',$bclassid,$temp);
  2118. $temp=str_replace('[!--bclass.name--]',$class_r[$bclassid]['classname'],$temp);
  2119. $temp=str_replace('[!--news.url--]',$public_r['newsurl'],$temp);
  2120. return $temp;
  2121. }
  2122. //替换搜索模板文件
  2123. function ReplaceStemp($temptext,$class,$url,$classid,$title,$key,$des,$repvar=1){
  2124. global $public_r;
  2125. if($repvar==1)//全局模板变量
  2126. {
  2127. $temptext=ReplaceTempvar($temptext);
  2128. }
  2129. $temptext=str_replace('[!--class.menu--]',$public_r['classnavs'],$temptext);//栏目导航
  2130. $temptext=str_replace("[!--class--]",$class,$temptext);
  2131. $temptext=str_replace('[!--pagetitle--]',$title,$temptext);
  2132. $temptext=str_replace('[!--pagekey--]',$key,$temptext);
  2133. $temptext=str_replace('[!--pagedes--]',$des,$temptext);
  2134. $temptext=str_replace('[!--self.classid--]',$classid,$temptext);
  2135. //热门文章
  2136. $temptext=str_replace("[!--hotnews--]","<script src='".$public_r[newsurl]."d/js/js/hotnews.js'></script>",$temptext);
  2137. //点击排行
  2138. $temptext=str_replace("[!--newnews--]","<script src='".$public_r[newsurl]."d/js/js/newnews.js'></script>",$temptext);
  2139. //推荐
  2140. $temptext=str_replace("[!--goodnews--]","<script src='".$public_r[newsurl]."d/js/js/goodnews.js'></script>",$temptext);
  2141. //评论排行
  2142. $temptext=str_replace("[!--hotplnews--]","<script src='".$public_r[newsurl]."d/js/js/hotplnews.js'></script>",$temptext);
  2143. //导航条
  2144. $temptext=str_replace("[!--url--]",$url,$temptext);
  2145. $temptext=str_replace('[!--newsnav--]',$url,$temptext);//位置导航
  2146. $temptext=str_replace("[!--news.url--]",$public_r[newsurl],$temptext);
  2147. $temptext=str_replace("[!--newsurl--]",$public_r[newsurl],$temptext);
  2148. return $temptext;
  2149. }
  2150. //栏目页验证
  2151. function AddCheckClassLevel($classid,$groupid,$classpath){
  2152. $classpath=ReturnSaveClassPath($classid);
  2153. $pr=explode('/',$classpath);
  2154. $pcount=count($pr);
  2155. for($i=0;$i<$pcount;$i++)
  2156. {
  2157. $include.='../';
  2158. }
  2159. $include1=$include;
  2160. $include.='e/class/CheckClassLevel.php';
  2161. $addlevel="<?php
  2162. define('empirecms','wm_chief');
  2163. \$check_groupid=\"".$groupid."\";
  2164. \$check_classid=".$classid.";
  2165. \$check_path=\"".$include1."\";
  2166. require(\"".$include."\");
  2167. ?>";
  2168. return $addlevel;
  2169. }
  2170. //生成栏目绑定信息页面
  2171. function ReClassBdInfo($classid){
  2172. global $empire,$dbtbpre;
  2173. $classid=(int)$classid;
  2174. $cr=$empire->fetch1("select classid,bdinfoid from {$dbtbpre}enewsclass where classid='$classid'");
  2175. if(!$cr['classid']||!$cr['bdinfoid'])
  2176. {
  2177. return '';
  2178. }
  2179. eAutodo_AddDo('ReListHtml',$classid,0,0,0,0);//moreportdo
  2180. $infor=explode(',',$cr['bdinfoid']);
  2181. $infofile=GetInfoFilename(intval($infor[0]),intval($infor[1]));
  2182. $classtext='';
  2183. if($infofile)
  2184. {
  2185. if(file_exists($infofile))
  2186. {
  2187. $classtext=ReadFiletext($infofile);
  2188. }
  2189. else
  2190. {
  2191. $classtext=ReClassBdInfoDtHtml($infor[0],$infor[1]);
  2192. }
  2193. }
  2194. $classfile=eReturnTrueEcmsPath().ReturnSaveClassPath($classid,1);//moreport
  2195. WriteFiletext_n($classfile,$classtext);
  2196. }
  2197. //栏目绑定动态信息
  2198. function ReClassBdInfoDtHtml($classid,$id){
  2199. global $empire,$dbtbpre,$public_r;
  2200. $classid=(int)$classid;
  2201. $id=(int)$id;
  2202. if(!$classid||!$id)
  2203. {
  2204. return '';
  2205. }
  2206. $infourl=$public_r['newsurl'].'e/public/InfoUrl/?classid='.$classid.'&id='.$id;
  2207. $html='<meta http-equiv="refresh" content="0;url='.$infourl.'">';
  2208. return $html;
  2209. }
  2210. //生成碎片文件
  2211. function DoSpReFile($r,$spid=0){
  2212. global $empire,$dbtbpre;
  2213. if($spid)
  2214. {
  2215. $r=$empire->fetch1("select spid,varname,refile,spfile,spfileline,spfilesub from {$dbtbpre}enewssp where spid='$spid' limit 1");
  2216. }
  2217. if(!$r['refile'])
  2218. {
  2219. return '';
  2220. }
  2221. eAutodo_AddDo('ReSp',$r['spid'],0,0,0,0);//moreportdo
  2222. ob_start();
  2223. sys_eShowSpInfo($r['varname'],$r['spfileline'],$r['spfilesub']);
  2224. $string=ob_get_contents();
  2225. ob_end_clean();
  2226. $filename=eReturnTrueEcmsPath().$r['spfile'];
  2227. WriteFiletext($filename,$string);
  2228. }
  2229. //标签替换
  2230. function NewsBq($classid,$indextext,$enews=0,$doing=0){
  2231. global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class_zr,$fun_r,$navclassid,$navinfor,$class_tr,$level_r,$etable_r;
  2232. $indextext=stripSlashes($indextext);
  2233. $indextext=ReplaceTempvar($indextext);//替换全局模板变量
  2234. $classlevel='';
  2235. if($enews==0)//生成大栏目
  2236. {
  2237. if($class_r[$classid]['listdt']||$class_r[$classid]['wburl']||strstr($public_r['nreclass'],','.$classid.',')||InfoIsInTable($class_r[$classid]['tbname']))//不生成栏目
  2238. {
  2239. return '';
  2240. }
  2241. $GLOBALS['navclassid']=$classid;
  2242. $url=ReturnClassLink($classid);//导航
  2243. $cf=$doing==1?',classpath,classtype,classname':'';
  2244. $cr=$empire->fetch1("select classpagekey,intro,classimg,cgroupid".$cf." from {$dbtbpre}enewsclass where classid='$classid'");
  2245. if(!empty($cf))
  2246. {
  2247. $class_r[$classid][classpath]=$cr[classpath];
  2248. $class_r[$classid][classtype]=$cr[classtype];
  2249. $class_r[$classid][classname]=$cr[classname];
  2250. }
  2251. eAutodo_AddDo('ReListHtml',$classid,0,0,0,0);//moreportdo
  2252. //权限
  2253. if($cr['cgroupid'])
  2254. {
  2255. $classlevel=AddCheckClassLevel($classid,$cr['cgroupid'],'');
  2256. }
  2257. //页面
  2258. $pagetitle=ehtmlspecialchars($class_r[$classid][classname]);
  2259. $pagekey=ehtmlspecialchars($cr['classpagekey']);
  2260. $pagedes=ehtmlspecialchars($cr['intro']);
  2261. $classimg=$cr['classimg'];
  2262. $onclick="<script src=".$public_r[newsurl]."e/public/onclick/?enews=doclass&classid=$classid></script>";
  2263. $truefile=eReturnTrueEcmsPath().ReturnSaveClassPath($classid,1);//moreport
  2264. $file=eReturnTrueEcmsPath().'e/data/tmp/class'.$classid.'.php';
  2265. $indextext=str_replace("[!--newsnav--]",$url,$indextext);//位置导航
  2266. $indextext=Class_ReplaceSvars($indextext,$url,$classid,$pagetitle,$pagekey,$pagedes,$classimg,$add,0);
  2267. }
  2268. elseif($enews==3)//专题
  2269. {
  2270. $GLOBALS['navclassid']=$classid;
  2271. $url=ReturnZtLink($classid);//导航
  2272. $cf=$doing==1?',ztpath,zttype,ztname':'';
  2273. $cr=$empire->fetch1("select ztpagekey,intro,ztimg".$cf." from {$dbtbpre}enewszt where ztid='$classid'");
  2274. if(!empty($cf))
  2275. {
  2276. $class_zr[$classid][ztpath]=$cr[ztpath];
  2277. $class_zr[$classid][zttype]=$cr[zttype];
  2278. $class_zr[$classid][ztname]=$cr[ztname];
  2279. }
  2280. eAutodo_AddDo('ReZtListHtml',$classid,0,0,0,0);//moreportdo
  2281. $pagetitle=ehtmlspecialchars($class_zr[$classid][ztname]);
  2282. $pagekey=ehtmlspecialchars($cr['ztpagekey']);
  2283. $pagedes=ehtmlspecialchars($cr['intro']);
  2284. $classimg=$cr['ztimg'];
  2285. $onclick="<script src=".$public_r[newsurl]."e/public/onclick/?enews=dozt&ztid=$classid></script>";
  2286. $truefile=eReturnTrueEcmsPath().ReturnSaveZtPath($classid,1);//moreport
  2287. $file=eReturnTrueEcmsPath().'e/data/tmp/zt'.$classid.'.php';
  2288. $indextext=str_replace("[!--newsnav--]",$url,$indextext);//位置导航
  2289. $indextext=Class_ReplaceSvars($indextext,$url,$classid,$pagetitle,$pagekey,$pagedes,$classimg,$add,1);
  2290. }
  2291. elseif($enews==4)//专题子类
  2292. {
  2293. $cr=$empire->fetch1("select ztid,cname,ttype,tfile from {$dbtbpre}enewszttype where cid='$classid'");
  2294. eAutodo_AddDo('ReZtcListHtml',$classid,0,0,0,0);//moreportdo
  2295. $GLOBALS['navclassid']=$classid;
  2296. $GLOBALS['navinfor']['ecmsbid']=$cr['ztid'];
  2297. $url=ReturnZtLink($cr['ztid']);//导航
  2298. $pagetitle=ehtmlspecialchars($cr['cname']);
  2299. $pagekey=ehtmlspecialchars($cr['cname']);
  2300. $pagedes=ehtmlspecialchars($cr['cname']);
  2301. $onclick="<script src=".$public_r[newsurl]."e/public/onclick/?enews=dozt&ztid=$cr[ztid]></script>";
  2302. $truefile=eReturnTrueEcmsPath().ReturnSaveZtPath($cr['ztid'],0).'/'.$cr['tfile'].$cr['ttype'];//moreport
  2303. $file=eReturnTrueEcmsPath().'e/data/tmp/ztc'.$classid.'.php';
  2304. $indextext=str_replace("[!--newsnav--]",$url,$indextext);//位置导航
  2305. $indextext=Class_ReplaceSvars($indextext,$url,$classid,$pagetitle,$pagekey,$pagedes,$classimg,$add,1);
  2306. }
  2307. elseif($enews==1)//生成首页文件
  2308. {
  2309. $pr=$empire->fetch1("select sitekey,siteintro,indexpagedt from {$dbtbpre}enewspublic limit 1");
  2310. if($pr['indexpagedt']||(Moreport_ReturnMustDt()&&!defined('ECMS_SELFPATH')))//moreport
  2311. {
  2312. return '';
  2313. }
  2314. eAutodo_AddDo('ReIndex',0,0,0,0,0,'',1);//moreportdo
  2315. //页面
  2316. $pagetitle=ehtmlspecialchars($public_r['sitename']);
  2317. $pagekey=ehtmlspecialchars($pr['sitekey']);
  2318. $pagedes=ehtmlspecialchars($pr['siteintro']);
  2319. $url="<a href=\"".ReturnSiteIndexUrl()."\">".$fun_r['index']."</a>";//栏目导航
  2320. $onclick='';
  2321. $truefile=eReturnTrueEcmsPath().ReturnSaveIndexFile();//moreport
  2322. $file=eReturnTrueEcmsPath().'e/data/tmp/index.php';
  2323. $indextext=ReplaceSvars($indextext,$url,0,$pagetitle,$pagekey,$pagedes,$add,0);
  2324. }
  2325. $indextext=str_replace("[!--page.stats--]",$onclick,$indextext);
  2326. //替换标签
  2327. $indextext=DoRepEcmsLoopBq($indextext);
  2328. $indextext=RepBq($indextext);
  2329. //写文件
  2330. WriteFiletext($file,AddCheckViewTempCode().$indextext);
  2331. //读取文件内容
  2332. ob_start();
  2333. include($file);
  2334. $string=ob_get_contents();
  2335. ob_end_clean();
  2336. $string=RepExeCode($string);//解析代码
  2337. WriteFiletext($truefile,$classlevel.$string);
  2338. return $string;
  2339. }
  2340. //标签替换2
  2341. function InfoNewsBq($classid,$indextext){
  2342. global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class_zr,$fun_r,$navclassid,$navinfor,$class_tr,$level_r,$etable_r;
  2343. if(!defined('EmpireCMSAdmin'))
  2344. {
  2345. $_GET['reallinfotime']=0;
  2346. }
  2347. if($_GET['reallinfotime'])
  2348. {
  2349. $classid.='_all';
  2350. }
  2351. $file=eReturnTrueEcmsPath().'e/data/tmp/temp'.$classid.'.php';
  2352. if($_GET['reallinfotime']&&file_exists($file))
  2353. {
  2354. $filetime=filemtime($file);
  2355. if($_GET['reallinfotime']<=$filetime)
  2356. {
  2357. ob_start();
  2358. include($file);
  2359. $string=ob_get_contents();
  2360. ob_end_clean();
  2361. $string=RepExeCode($string);//解析代码
  2362. return $string;
  2363. }
  2364. }
  2365. $indextext=stripSlashes($indextext);
  2366. $indextext=ReplaceTempvar($indextext);//替换全局模板变量
  2367. //替换标签
  2368. $indextext=DoRepEcmsLoopBq($indextext);
  2369. $indextext=RepBq($indextext);
  2370. //写文件
  2371. WriteFiletext($file,AddCheckViewTempCode().$indextext);
  2372. //读取文件内容
  2373. ob_start();
  2374. include($file);
  2375. $string=ob_get_contents();
  2376. ob_end_clean();
  2377. $string=RepExeCode($string);//解析代码
  2378. return $string;
  2379. }
  2380. //标签替换3
  2381. function GetInfoNewsBq($classid,$newstemp_r,$ecms_gr,$docheckrep){
  2382. global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class_zr,$fun_r,$navclassid,$navinfor,$class_tr,$level_r,$etable_r;
  2383. if(!defined('EmpireCMSAdmin'))
  2384. {
  2385. $_GET['reallinfotime']=0;
  2386. }
  2387. if($_GET['reallinfotime'])
  2388. {
  2389. $file=eReturnTrueEcmsPath().'e/data/tmp/tempnews'.$newstemp_r['tempid'].'_all.php';
  2390. }
  2391. else
  2392. {
  2393. $file=eReturnTrueEcmsPath().'e/data/tmp/tempnews'.$newstemp_r['tempid'].'.php';
  2394. }
  2395. //变量处理
  2396. $grurl=ReturnClassLink($ecms_gr['classid']);//导航
  2397. $grpagetitle=ehtmlspecialchars($ecms_gr['title']);
  2398. $grbclassid=$class_r[$ecms_gr['classid']]['bclassid'];
  2399. $grtitleurl=sys_ReturnBqTitleLink($ecms_gr);
  2400. $grclassurl=sys_ReturnBqClassname($ecms_gr,9);
  2401. if($_GET['reallinfotime']&&file_exists($file))
  2402. {
  2403. $filetime=filemtime($file);
  2404. if($_GET['reallinfotime']<=$filetime)
  2405. {
  2406. ob_start();
  2407. include($file);
  2408. $string=ob_get_contents();
  2409. ob_end_clean();
  2410. $string=RepExeCode($string);//解析代码
  2411. return $string;
  2412. }
  2413. }
  2414. $formatdate=$newstemp_r['showdate'];
  2415. $newstemp_r['temptext']=stripSlashes($newstemp_r['temptext']);
  2416. $newstemp_r['temptext']=ReplaceTempvar($newstemp_r['temptext']);//替换全局模板变量
  2417. //替换标签
  2418. $newstemp_r['temptext']=DoRepEcmsLoopBq($newstemp_r['temptext']);
  2419. $newstemp_r['temptext']=RepBq($newstemp_r['temptext']);
  2420. //替换变量
  2421. $indextext=GetHtmlRepVar($newstemp_r,$ecms_gr['classid']);
  2422. //写文件
  2423. WriteFiletext($file,AddCheckViewTempCode().$indextext);
  2424. //读取文件内容
  2425. ob_start();
  2426. include($file);
  2427. $string=ob_get_contents();
  2428. ob_end_clean();
  2429. $string=RepExeCode($string);//解析代码
  2430. return $string;
  2431. }
  2432. //标签替换4
  2433. function DtNewsBq($classid,$indextext,$ecms=0){
  2434. global $empire,$dbtbpre,$public_r,$emod_r,$class_r,$class_zr,$fun_r,$navclassid,$navinfor,$class_tr,$level_r,$etable_r;
  2435. $cachetime=$ecms==1?$public_r['dtncachetime']:$public_r['dtcachetime'];
  2436. $file=ECMS_PATH.'e/data/tmp/dt_temp'.$classid.'.php';
  2437. if($cachetime&&file_exists($file))
  2438. {
  2439. $filetime=filemtime($file);
  2440. if(time()-$cachetime*60<=$filetime)
  2441. {
  2442. ob_start();
  2443. include($file);
  2444. $string=ob_get_contents();
  2445. ob_end_clean();
  2446. $string=RepExeCode($string);//解析代码
  2447. return $string;
  2448. }
  2449. }
  2450. $indextext=stripSlashes($indextext);
  2451. $indextext=ReplaceTempvar($indextext);//替换全局模板变量
  2452. //替换标签
  2453. $indextext=DoRepEcmsLoopBq($indextext);
  2454. $indextext=RepBq($indextext);
  2455. //写文件
  2456. WriteFiletext($file,AddCheckViewTempCode().$indextext);
  2457. //读取文件内容
  2458. ob_start();
  2459. include($file);
  2460. $string=ob_get_contents();
  2461. ob_end_clean();
  2462. $string=RepExeCode($string);//解析代码
  2463. return $string;
  2464. }
  2465. //解析代码
  2466. function RepExeCode($string){
  2467. global $public_r;
  2468. if($public_r['candocode']&&$public_r['candocodetag'])
  2469. {
  2470. $string=str_replace('<!--code.start-->','<',$string);
  2471. $string=str_replace('<!--code.end-->','>',$string);
  2472. }
  2473. return $string;
  2474. }
  2475. function ClearRepDoECode($string){
  2476. $string=str_replace('<!--code.start-->','&lt;!--code.start--&gt;',$string);
  2477. $string=str_replace('<!--code.end-->','&lt;!--code.end--&gt;',$string);
  2478. return $string;
  2479. }
  2480. //替换标签
  2481. function RepBq($indextext){
  2482. global $empire,$dbtbpre;
  2483. $sql=$empire->query("select bq,funname from {$dbtbpre}enewsbq where isclose=0 order by bqid");
  2484. while($r=$empire->fetch($sql))
  2485. {
  2486. $preg_str="/\[".$r[bq]."\](.+?)\[\/".$r[bq]."\]/is";
  2487. $indextext=preg_replace($preg_str,"<? @".$r[funname]."(\\1);?>",$indextext);
  2488. }
  2489. return $indextext;
  2490. }
  2491. //替换灵动标签
  2492. function DoRepEcmsLoopBq($temp){
  2493. $yzz="/\[e:loop={(.+?)}\](.+?)\[\/e:loop\]/is";
  2494. $xzz="<?php
  2495. \$bqno=0;
  2496. \$ecms_bq_sql=sys_ReturnEcmsLoopBq(\\1);
  2497. if(\$ecms_bq_sql){
  2498. while(\$bqr=\$empire->fetch(\$ecms_bq_sql)){
  2499. \$bqsr=sys_ReturnEcmsLoopStext(\$bqr);
  2500. \$bqno++;
  2501. ?>\\2<?php
  2502. }
  2503. }
  2504. ?>";
  2505. $temp=preg_replace($yzz,$xzz,$temp);
  2506. $temp=DoRepEcmsIndexLoopBq($temp);
  2507. return $temp;
  2508. }
  2509. //替换索引灵动标签
  2510. function DoRepEcmsIndexLoopBq($temp){
  2511. $yzz="/\[e:indexloop={(.+?)}\](.+?)\[\/e:indexloop\]/is";
  2512. $xzz="<?php
  2513. \$bqno=0;
  2514. \$ecms_bq_sql=sys_ReturnEcmsIndexLoopBq(\\1);
  2515. if(\$ecms_bq_sql){
  2516. while(\$indexbqr=\$empire->fetch(\$ecms_bq_sql)){
  2517. if(empty(\$class_r[\$indexbqr['classid']]['tbname'])){continue;}
  2518. \$bqr=\$empire->fetch1(\"select * from {\$dbtbpre}ecms_\".\$class_r[\$indexbqr['classid']]['tbname'].\" where id='\$indexbqr[id]'\");
  2519. \$bqsr=sys_ReturnEcmsLoopStext(\$bqr);
  2520. \$bqno++;
  2521. ?>\\2<?php
  2522. }
  2523. }
  2524. ?>";
  2525. return preg_replace($yzz,$xzz,$temp);
  2526. }
  2527. //无信息的信息列表
  2528. function NotinfoListHtml($path,$list_r,$classlevel){
  2529. global $fun_r;
  2530. $word=$fun_r['HaveNotListInfo'];
  2531. $pagetext=$list_r[0].$word.$list_r[2];
  2532. $pagetext=str_replace('[!--show.page--]','',$pagetext);
  2533. $pagetext=str_replace('[!--show.listpage--]','',$pagetext);
  2534. $pagetext=str_replace('[!--list.pageno--]','',$pagetext);
  2535. WriteFiletext($path,$classlevel.$pagetext);
  2536. }
  2537. //生成信息列表
  2538. function ListHtml($classid,$fields,$enews=0,$userlistr=""){
  2539. global $empire,$dbtbpre,$emod_r,$public_r,$class_r,$class_zr,$fun_r,$class_tr,$level_r,$etable_r;
  2540. //不生成栏目
  2541. if(($enews==0||$enews==3)&&($class_r[$classid]['listdt']||$class_r[$classid]['wburl']||strstr($public_r['nreclass'],','.$classid.',')))
  2542. {
  2543. return '';
  2544. }
  2545. $GLOBALS['navclassid']=$classid;
  2546. $doclass="index";
  2547. $classlevel='';
  2548. $yhvar='qlist';
  2549. if($enews==0)//子栏目列表
  2550. {
  2551. if(InfoIsInTable($class_r[$classid][tbname]))//内部表
  2552. {
  2553. return '';
  2554. }
  2555. $selfclassid=$classid;
  2556. $doenews=0;
  2557. $cr=$empire->fetch1("select classpagekey,intro,classimg,cgroupid,repagenum,bdinfoid,addsql from {$dbtbpre}enewsclass where classid='$classid'");
  2558. //绑定信息
  2559. if(!empty($cr['bdinfoid']))
  2560. {
  2561. ReClassBdInfo($classid);
  2562. return '';
  2563. }
  2564. eAutodo_AddDo('ReListHtml',$classid,0,0,0,0);//moreportdo
  2565. $mid=$class_r[$classid][modid];
  2566. //权限
  2567. if($cr['cgroupid'])
  2568. {
  2569. $classlevel=AddCheckClassLevel($classid,$cr['cgroupid'],'');
  2570. }
  2571. //页面
  2572. $pagetitle=ehtmlspecialchars($class_r[$classid][classname]);
  2573. $pagekey=ehtmlspecialchars($cr['classpagekey']);
  2574. $pagedes=ehtmlspecialchars($cr['intro']);
  2575. $classimg=$cr['classimg'];
  2576. $url=ReturnClassLink($classid);
  2577. $haveclass=0;
  2578. //排序
  2579. if(empty($class_r[$classid][reorder]))
  2580. {
  2581. $addorder="newstime desc";
  2582. }
  2583. else
  2584. {
  2585. $addorder=$class_r[$classid][reorder];
  2586. }
  2587. //分页参数
  2588. $pagefunr=eReturnRewriteLink('classpage',$classid,0);
  2589. $pagefunr['repagenum']=$cr['repagenum'];
  2590. $totalrepage=$cr['repagenum']*$class_r[$classid][lencord];
  2591. if($totalrepage)
  2592. {
  2593. $limit=" limit ".$totalrepage;
  2594. }
  2595. if($class_r[$classid][maxnum])//总记录数
  2596. {
  2597. if($class_r[$classid][maxnum]<$totalrepage)
  2598. {
  2599. $limit=" limit ".$class_r[$classid][maxnum];
  2600. }
  2601. $limitnum=$class_r[$classid][maxnum];
  2602. }
  2603. //优化
  2604. $yhid=$class_r[$classid][yhid];
  2605. if($yhid)
  2606. {
  2607. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  2608. }
  2609. $caddsql=$cr['addsql']?' and ('.$cr['addsql'].')':'';
  2610. $query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid'".$caddsql." order by ".ReturnSetTopSql('list').$addorder.$limit;
  2611. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid'".$caddsql;//统计
  2612. $doclasspath=ReturnSaveClassPath($classid,0);
  2613. $dopath=eReturnTrueEcmsPath().$doclasspath."/";//moreport
  2614. if(empty($class_r[$classid][classurl]))
  2615. {
  2616. $dolink=$public_r[newsurl].$doclasspath."/";
  2617. }
  2618. else
  2619. {
  2620. $dolink=$class_r[$classid][classurl]."/";
  2621. }
  2622. $dotype=$class_r[$classid][classtype];
  2623. $classname=$class_r[$classid][classname];
  2624. $lencord=$class_r[$classid][lencord];//记录数
  2625. $onclick="<script src='".$public_r[newsurl]."e/public/onclick/?enews=doclass&classid=$classid'></script>";
  2626. //模板
  2627. $listtempid=$class_r[$classid][listtempid];
  2628. }
  2629. elseif($enews==5)//标题分类列表
  2630. {
  2631. $mid=$class_tr[$classid]['mid'];
  2632. $tbname=$emod_r[$mid]['tbname'];
  2633. if(InfoIsInTable($tbname))//内部表
  2634. {
  2635. return '';
  2636. }
  2637. $selfclassid=$classid;
  2638. $doenews=1;
  2639. $cr=$empire->fetch1("select tnum,listtempid,maxnum,reorder,timg,intro,pagekey,listdt,repagenum from {$dbtbpre}enewsinfotype where typeid='$classid'");
  2640. //页面
  2641. $pagetitle=ehtmlspecialchars($class_tr[$classid]['tname']);
  2642. $pagekey=ehtmlspecialchars($cr['pagekey']);
  2643. $pagedes=ehtmlspecialchars($cr['intro']);
  2644. $classimg=$cr['timg'];
  2645. $url=ReturnInfoTypeLink($classid);
  2646. $haveclass=1;
  2647. if($cr['listdt'])//动态页面
  2648. {
  2649. return '';
  2650. }
  2651. eAutodo_AddDo('ReTtListHtml',$classid,0,0,0,0);//moreportdo
  2652. //排序
  2653. if(empty($cr['reorder']))
  2654. {
  2655. $addorder='newstime desc';
  2656. }
  2657. else
  2658. {
  2659. $addorder=$cr['reorder'];
  2660. }
  2661. //分页参数
  2662. $pagefunr=eReturnRewriteLink('ttpage',$classid,0);
  2663. $pagefunr['repagenum']=$cr['repagenum'];
  2664. $totalrepage=$cr['repagenum']*$cr['tnum'];
  2665. if($totalrepage)
  2666. {
  2667. $limit=" limit ".$totalrepage;
  2668. }
  2669. if($cr['maxnum'])
  2670. {
  2671. if($cr['maxnum']<$totalrepage)
  2672. {
  2673. $limit=" limit ".$cr['maxnum'];
  2674. }
  2675. $limitnum=$cr['maxnum'];
  2676. }
  2677. //优化
  2678. $yhid=$class_tr[$classid]['yhid'];
  2679. if($yhid)
  2680. {
  2681. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  2682. }
  2683. $query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$tbname." where ".$yhadd."ttid='$classid' order by ".ReturnSetTopSql('list').$addorder.$limit;
  2684. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$tbname." where ".$yhadd."ttid='$classid'";//统计
  2685. $doclasspath=ReturnSaveInfoTypePath($classid,0);
  2686. $dopath=eReturnTrueEcmsPath().$doclasspath."/";//moreport
  2687. $dolink=$public_r[newsurl].$doclasspath."/";
  2688. $dotype=$class_tr[$classid]['ttype'];
  2689. $classname=$class_tr[$classid]['tname'];
  2690. $lencord=$cr['tnum'];//记录数
  2691. $onclick="";
  2692. //模板
  2693. $listtempid=$cr['listtempid'];
  2694. }
  2695. elseif($enews==3)//大栏目列表
  2696. {
  2697. if(InfoIsInTable($class_r[$classid][tbname]))//内部表
  2698. {
  2699. return '';
  2700. }
  2701. eAutodo_AddDo('ReListHtml',$classid,0,0,0,0);//moreportdo
  2702. $selfclassid=$classid;
  2703. $doenews=0;
  2704. $cr=$empire->fetch1("select classpagekey,intro,classimg,cgroupid,repagenum,addsql from {$dbtbpre}enewsclass where classid='$classid'");
  2705. $mid=$class_r[$classid][modid];
  2706. //权限
  2707. if($cr['cgroupid'])
  2708. {
  2709. $classlevel=AddCheckClassLevel($classid,$cr['cgroupid'],'');
  2710. }
  2711. //页面
  2712. $pagetitle=ehtmlspecialchars($class_r[$classid][classname]);
  2713. $pagekey=ehtmlspecialchars($cr['classpagekey']);
  2714. $pagedes=ehtmlspecialchars($cr['intro']);
  2715. $classimg=$cr['classimg'];
  2716. $url=ReturnClassLink($classid);
  2717. $haveclass=1;
  2718. //排序
  2719. if(empty($class_r[$classid][reorder]))
  2720. {
  2721. $addorder="newstime desc";
  2722. }
  2723. else
  2724. {
  2725. $addorder=$class_r[$classid][reorder];
  2726. }
  2727. //分页参数
  2728. $pagefunr=eReturnRewriteLink('classpage',$classid,0);
  2729. $pagefunr['repagenum']=$cr['repagenum'];
  2730. $totalrepage=$cr['repagenum']*$class_r[$classid][lencord];
  2731. if($totalrepage)
  2732. {
  2733. $limit=" limit ".$totalrepage;
  2734. }
  2735. if($class_r[$classid][maxnum])
  2736. {
  2737. if($class_r[$classid][maxnum]<$totalrepage)
  2738. {
  2739. $limit=" limit ".$class_r[$classid][maxnum];
  2740. }
  2741. $limitnum=$class_r[$classid][maxnum];
  2742. }
  2743. $whereclass=ReturnClass($class_r[$classid][sonclass]);
  2744. //优化
  2745. $yhid=$class_r[$classid][yhid];
  2746. if($yhid)
  2747. {
  2748. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  2749. }
  2750. $caddsql=$cr['addsql']?' and ('.$cr['addsql'].')':'';
  2751. $query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."(".$whereclass.")".$caddsql." order by ".ReturnSetTopSql('list').$addorder.$limit;
  2752. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."(".$whereclass.")".$caddsql;//统计
  2753. $doclasspath=ReturnSaveClassPath($classid,0);
  2754. $dopath=eReturnTrueEcmsPath().$doclasspath."/";//moreport
  2755. if(empty($class_r[$classid][classurl]))
  2756. {
  2757. $dolink=$public_r[newsurl].$doclasspath."/";
  2758. }
  2759. else
  2760. {
  2761. $dolink=$class_r[$classid][classurl]."/";
  2762. }
  2763. $dotype=$class_r[$classid][classtype];
  2764. $classname=$class_r[$classid][classname];
  2765. $lencord=$class_r[$classid][lencord];//记录数
  2766. $onclick="<script src='".$public_r[newsurl]."e/public/onclick/?enews=doclass&classid=$classid'></script>";
  2767. //模板
  2768. $listtempid=$class_r[$classid][listtempid];
  2769. }
  2770. elseif($enews==4)//按sql语句生成列表
  2771. {
  2772. $selfclassid=0;
  2773. $doenews=1;
  2774. $userlistr['listsql']=RepSqlTbpre($userlistr['listsql']);
  2775. $userlistr['totalsql']=RepSqlTbpre($userlistr['totalsql']);
  2776. //页面
  2777. $pagetitle=ehtmlspecialchars($userlistr['pagetitle']);
  2778. $pagekey=ehtmlspecialchars($userlistr['pagekeywords']);
  2779. $pagedes=ehtmlspecialchars($userlistr['pagedescription']);
  2780. $haveclass=1;
  2781. if($userlistr['maxnum'])//最大查询数
  2782. {
  2783. $limit=" limit ".$userlistr['maxnum'];
  2784. $limitnum=$userlistr['maxnum'];
  2785. }
  2786. $query=stripSlashes($userlistr['listsql']).$limit;
  2787. //统计
  2788. $totalquery=stripSlashes($userlistr['totalsql']);
  2789. $dopath=eReturnTrueEcmsPath().'e/data/'.$userlistr['filepath'];//maddpath
  2790. $dolink=$public_r[newsurl].str_replace('../../','',$userlistr['filepath']);
  2791. $dotype=$userlistr['filetype'];
  2792. $classname=$userlistr['pagetitle'];
  2793. $lencord=$userlistr['lencord'];//记录数
  2794. $onclick='';
  2795. $url=ReturnUserPLink($pagetitle,$dolink);
  2796. //模板
  2797. $listtempid=$userlistr['listtempid'];
  2798. }
  2799. if(empty($lencord))
  2800. {
  2801. $lencord=25;
  2802. }
  2803. //列表模板
  2804. $listtemp_r=GetListTemp($listtempid);
  2805. $listtemp=$listtemp_r[temptext];
  2806. $subnews=$listtemp_r[subnews];
  2807. $subtitle=$listtemp_r[subtitle];
  2808. $docode=$listtemp_r[docode];
  2809. $listvar=str_replace('[!--news.url--]',$public_r[newsurl],$listtemp_r[listvar]);
  2810. $rownum=$listtemp_r[rownum];
  2811. $formatdate=$listtemp_r[showdate];
  2812. if(empty($rownum))
  2813. {
  2814. $rownum=1;
  2815. }
  2816. if(empty($mid))
  2817. {
  2818. $mid=$listtemp_r[modid];
  2819. }
  2820. $field=ReturnReplaceListF($mid);
  2821. //分页参数
  2822. $pagefunr['dofile']=$dofile;
  2823. //分页列表函数
  2824. if(!empty($public_r['listpagefun'])||!empty($public_r['listpagelistfun']))
  2825. {
  2826. if(strstr($listtemp,'[!--show.page--]'))//下拉式
  2827. {
  2828. $thefun=$public_r['listpagefun'];
  2829. $bereplistpage='[!--show.page--]';
  2830. }
  2831. else//列表式
  2832. {
  2833. $thefun=$public_r['listpagelistfun'];
  2834. $bereplistpage='[!--show.listpage--]';
  2835. }
  2836. }
  2837. else
  2838. {
  2839. $thefun='sys_ShowListPage';
  2840. $bereplistpage='[!--show.page--]';
  2841. }
  2842. //替换模板变量
  2843. $listtemp=str_replace('[!--newsnav--]',$url,$listtemp);//位置导航
  2844. $listtemp=Class_ReplaceSvars($listtemp,$url,$selfclassid,$pagetitle,$pagekey,$pagedes,$classimg,$add,$doenews);
  2845. $listtemp=str_replace('[!--page.stats--]',$onclick,$listtemp);
  2846. $no=1;
  2847. $ok=0;
  2848. $changerow=1;
  2849. $num=$empire->gettotal($totalquery);
  2850. //最大数
  2851. if($limitnum&&$limitnum<$num)
  2852. {
  2853. $num=$limitnum;
  2854. }
  2855. $page=ceil($num/$lencord);
  2856. //取得列表模板
  2857. $list_exp="[!--empirenews.listtemp--]";
  2858. $list_r=explode($list_exp,$listtemp);
  2859. //无信息
  2860. if(empty($num))
  2861. {
  2862. $noinfopath=$dopath."index".$dotype;
  2863. NotinfoListHtml($noinfopath,$list_r,$classlevel);
  2864. return "";
  2865. }
  2866. $sql=$empire->query($query);
  2867. $listtext=$list_r[1];
  2868. while($k=$empire->fetch($sql))
  2869. {
  2870. //替换列表变量
  2871. $repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$haveclass,$k,$field,$docode);
  2872. $listtext=str_replace("<!--list.var".$changerow."-->",$repvar,$listtext);
  2873. $changerow+=1;
  2874. //超过行数
  2875. if($changerow>$rownum)
  2876. {
  2877. $changerow=1;
  2878. $string.=$listtext;
  2879. $listtext=$list_r[1];
  2880. }
  2881. if($no%$lencord==0||($num%$lencord<>0&&$num==$no))
  2882. {
  2883. $ok+=1;
  2884. $pagenum=ceil($no/$lencord);
  2885. //首页
  2886. if($pagenum==1)
  2887. {
  2888. $path=$dopath."index".$dotype;
  2889. }
  2890. else
  2891. {
  2892. $path=$dopath."index_".$ok.$dotype;
  2893. }
  2894. //取得分页参数
  2895. $returnpager=$thefun($num,$pagenum,$dolink,$dotype,$page,$lencord,$ok,$myoptions,$pagefunr);
  2896. $showpage=$returnpager['showpage'];
  2897. $myoptions=$returnpager['option'];
  2898. $list1=str_replace($bereplistpage,$showpage,$list_r[0]);
  2899. $list2=str_replace($bereplistpage,$showpage,$list_r[2]);
  2900. //多余数据
  2901. if($changerow<=$rownum&&$listtext<>$list_r[1])
  2902. {
  2903. $string.=$listtext;
  2904. }
  2905. $listtext=$list_r[1];
  2906. $changerow=1;
  2907. $string=$list1.$string.$list2;
  2908. //替换分页数
  2909. $string=str_replace('[!--list.pageno--]',($pagenum==1?'':$pagenum),$string);
  2910. WriteFiletext($path,$classlevel.$string);
  2911. $string='';
  2912. }
  2913. $no++;
  2914. }
  2915. $empire->free($sql);
  2916. }
  2917. //生成索引类信息列表
  2918. function ListHtmlIndex($classid,$fields,$enews=0,$userlistr=""){
  2919. global $empire,$dbtbpre,$emod_r,$public_r,$class_r,$class_zr,$fun_r,$class_tr,$level_r,$etable_r;
  2920. $GLOBALS['navclassid']=$classid;
  2921. $dofile="index";
  2922. $classlevel='';
  2923. $yhvar='qlist';
  2924. $mid=0;
  2925. if($enews==0)//专题列表
  2926. {
  2927. $selfclassid=$classid;
  2928. $doenews=1;
  2929. $cr=$empire->fetch1("select ztpagekey,intro,ztimg,classtempid from {$dbtbpre}enewszt where ztid='$classid'");
  2930. //页面
  2931. $pagetitle=ehtmlspecialchars($class_zr[$classid][ztname]);
  2932. $pagekey=ehtmlspecialchars($cr['ztpagekey']);
  2933. $pagedes=ehtmlspecialchars($cr['intro']);
  2934. $classimg=$cr['ztimg'];
  2935. $url=ReturnZtLink($classid);
  2936. $haveclass=1;
  2937. if($class_zr[$classid][islist]!=1)//非列表式
  2938. {
  2939. $classtemp=$class_zr[$classid][islist]==2?GetZtText($classid):GetClassTemp($cr['classtempid']);
  2940. NewsBq($classid,$classtemp,3,0);
  2941. return "";
  2942. }
  2943. eAutodo_AddDo('ReZtListHtml',$classid,0,0,0,0);//moreportdo
  2944. //排序
  2945. if(empty($class_zr[$classid][reorder]))
  2946. {
  2947. $addorder='newstime desc';
  2948. }
  2949. else
  2950. {
  2951. $addorder=$class_zr[$classid][reorder];
  2952. }
  2953. if($class_zr[$classid][maxnum])
  2954. {
  2955. $limit=' limit '.$class_zr[$classid][maxnum];
  2956. $limitnum=$class_zr[$classid][maxnum];
  2957. }
  2958. //优化
  2959. $yhid=$class_zr[$classid][yhid];
  2960. if($yhid)
  2961. {
  2962. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  2963. }
  2964. $query="select ztid,cid,classid,id,isgood from {$dbtbpre}enewsztinfo where ".$yhadd."ztid='$classid' order by ".$addorder.$limit;
  2965. $totalquery="select count(*) as total from {$dbtbpre}enewsztinfo where ".$yhadd."ztid='$classid'";//统计
  2966. $doclasspath=ReturnSaveZtPath($classid,0);
  2967. $dopath=eReturnTrueEcmsPath().$doclasspath."/";
  2968. if(empty($class_zr[$classid][zturl]))
  2969. {
  2970. $dolink=$public_r[newsurl].$doclasspath."/";
  2971. }
  2972. else
  2973. {
  2974. $dolink=$class_zr[$classid][zturl]."/";
  2975. }
  2976. $dotype=$class_zr[$classid][zttype];
  2977. $classname=$class_zr[$classid][ztname];
  2978. $lencord=$class_zr[$classid][ztnum];//记录数
  2979. $onclick="<script src='".$public_r[newsurl]."e/public/onclick/?enews=dozt&ztid=$classid'></script>";
  2980. //模板
  2981. $listtempid=$class_zr[$classid][listtempid];
  2982. }
  2983. elseif($enews==1)//专题子类列表
  2984. {
  2985. $selfclassid=$classid;
  2986. $doenews=1;
  2987. $cr=$empire->fetch1("select ztid,cname,islist,listtempid,maxnum,tnum,reorder,ttype,tfile from {$dbtbpre}enewszttype where cid='$classid'");
  2988. $GLOBALS['navinfor']['ecmsbid']=$cr['ztid'];
  2989. //页面
  2990. $pagetitle=ehtmlspecialchars($cr['cname']);
  2991. $pagekey=ehtmlspecialchars($cr['cname']);
  2992. $pagedes=ehtmlspecialchars($cr['cname']);
  2993. $url=ReturnZtLink($cr['ztid']);
  2994. $haveclass=1;
  2995. if($cr['islist']!=1)//非列表式
  2996. {
  2997. $classtemp=GetZtcText($classid);
  2998. NewsBq($classid,$classtemp,4,0);
  2999. return '';
  3000. }
  3001. eAutodo_AddDo('ReZtcListHtml',$classid,0,0,0,0);//moreportdo
  3002. //排序
  3003. if(empty($cr['reorder']))
  3004. {
  3005. $addorder='newstime desc';
  3006. }
  3007. else
  3008. {
  3009. $addorder=$cr['reorder'];
  3010. }
  3011. if($cr['maxnum'])
  3012. {
  3013. $limit=" limit ".$cr['maxnum'];
  3014. $limitnum=$cr['maxnum'];
  3015. }
  3016. //优化
  3017. $ztid=$cr['ztid'];
  3018. $yhid=$class_zr[$ztid][yhid];
  3019. if($yhid)
  3020. {
  3021. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  3022. }
  3023. $query="select ztid,cid,classid,id,isgood from {$dbtbpre}enewsztinfo where ".$yhadd."cid='$classid' order by ".$addorder.$limit;
  3024. $totalquery="select count(*) as total from {$dbtbpre}enewsztinfo where ".$yhadd."cid='$classid'";//统计
  3025. $doclasspath=ReturnSaveZtPath($ztid,0);
  3026. $dopath=eReturnTrueEcmsPath().$doclasspath."/";
  3027. if(empty($class_zr[$ztid][zturl]))
  3028. {
  3029. $dolink=$public_r[newsurl].$doclasspath."/";
  3030. }
  3031. else
  3032. {
  3033. $dolink=$class_zr[$ztid][zturl]."/";
  3034. }
  3035. $dofile=$cr['tfile'];//文件名
  3036. $dotype=$cr['ttype'];
  3037. $classname=$cr['cname'];
  3038. $lencord=$cr['tnum'];//记录数
  3039. $onclick="<script src='".$public_r[newsurl]."e/public/onclick/?enews=dozt&ztid=$ztid'></script>";
  3040. //模板
  3041. $listtempid=$cr['listtempid'];
  3042. }
  3043. elseif($enews==4)//按sql语句生成列表
  3044. {
  3045. $selfclassid=0;
  3046. $doenews=1;
  3047. $userlistr['listsql']=RepSqlTbpre($userlistr['listsql']);
  3048. $userlistr['totalsql']=RepSqlTbpre($userlistr['totalsql']);
  3049. //页面
  3050. $pagetitle=ehtmlspecialchars($userlistr['pagetitle']);
  3051. $pagekey=ehtmlspecialchars($userlistr['pagekeywords']);
  3052. $pagedes=ehtmlspecialchars($userlistr['pagedescription']);
  3053. $haveclass=1;
  3054. if($userlistr['maxnum'])//最大查询数
  3055. {
  3056. $limit=" limit ".$userlistr['maxnum'];
  3057. $limitnum=$userlistr['maxnum'];
  3058. }
  3059. $query=stripSlashes($userlistr['listsql']).$limit;
  3060. //统计
  3061. $totalquery=stripSlashes($userlistr['totalsql']);
  3062. $dopath=eReturnTrueEcmsPath().'e/data/'.$userlistr['filepath'];//maddpath
  3063. $dolink=$public_r[newsurl].str_replace('../../','',$userlistr['filepath']);
  3064. $dotype=$userlistr['filetype'];
  3065. $classname=$userlistr['pagetitle'];
  3066. $lencord=$userlistr['lencord'];//记录数
  3067. $onclick='';
  3068. $url=ReturnUserPLink($pagetitle,$dolink);
  3069. //模板
  3070. $listtempid=$userlistr['listtempid'];
  3071. }
  3072. if(empty($lencord))
  3073. {
  3074. $lencord=25;
  3075. }
  3076. //列表模板
  3077. $listtemp_r=GetListTemp($listtempid);
  3078. $listtemp=$listtemp_r[temptext];
  3079. $subnews=$listtemp_r[subnews];
  3080. $subtitle=$listtemp_r[subtitle];
  3081. $docode=$listtemp_r[docode];
  3082. $listvar=str_replace('[!--news.url--]',$public_r[newsurl],$listtemp_r[listvar]);
  3083. $rownum=$listtemp_r[rownum];
  3084. $formatdate=$listtemp_r[showdate];
  3085. if(empty($rownum))
  3086. {
  3087. $rownum=1;
  3088. }
  3089. if(empty($mid))
  3090. {
  3091. $mid=$listtemp_r[modid];
  3092. }
  3093. $field=ReturnReplaceListF($mid);
  3094. //分页参数
  3095. $pagefunr['dofile']=$dofile;
  3096. //分页列表函数
  3097. if(!empty($public_r['listpagefun'])||!empty($public_r['listpagelistfun']))
  3098. {
  3099. if(strstr($listtemp,'[!--show.page--]'))//下拉式
  3100. {
  3101. $thefun=$public_r['listpagefun'];
  3102. $bereplistpage='[!--show.page--]';
  3103. }
  3104. else//列表式
  3105. {
  3106. $thefun=$public_r['listpagelistfun'];
  3107. $bereplistpage='[!--show.listpage--]';
  3108. }
  3109. }
  3110. else
  3111. {
  3112. $thefun='sys_ShowListPage';
  3113. $bereplistpage='[!--show.page--]';
  3114. }
  3115. //替换模板变量
  3116. $listtemp=str_replace('[!--newsnav--]',$url,$listtemp);//位置导航
  3117. $listtemp=Class_ReplaceSvars($listtemp,$url,$selfclassid,$pagetitle,$pagekey,$pagedes,$classimg,$add,$doenews);
  3118. $listtemp=str_replace('[!--page.stats--]',$onclick,$listtemp);
  3119. $no=1;
  3120. $ok=0;
  3121. $changerow=1;
  3122. $num=$empire->gettotal($totalquery);
  3123. //最大数
  3124. if($limitnum&&$limitnum<$num)
  3125. {
  3126. $num=$limitnum;
  3127. }
  3128. $page=ceil($num/$lencord);
  3129. //取得列表模板
  3130. $list_exp="[!--empirenews.listtemp--]";
  3131. $list_r=explode($list_exp,$listtemp);
  3132. //无信息
  3133. if(empty($num))
  3134. {
  3135. $noinfopath=$dopath.$dofile.$dotype;
  3136. NotinfoListHtml($noinfopath,$list_r,$classlevel);
  3137. return "";
  3138. }
  3139. $sql=$empire->query($query);
  3140. $listtext=$list_r[1];
  3141. while($k=$empire->fetch($sql))
  3142. {
  3143. if(empty($class_r[$k[classid]][tbname]))
  3144. {
  3145. $no++;
  3146. continue;
  3147. }
  3148. $infor=$empire->fetch1("select * from {$dbtbpre}ecms_".$class_r[$k[classid]][tbname]." where id='$k[id]' limit 1");
  3149. if(empty($infor['id']))
  3150. {
  3151. $no++;
  3152. continue;
  3153. }
  3154. //替换列表变量
  3155. $repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$haveclass,$infor,$field,$docode);
  3156. $listtext=str_replace("<!--list.var".$changerow."-->",$repvar,$listtext);
  3157. $changerow+=1;
  3158. //超过行数
  3159. if($changerow>$rownum)
  3160. {
  3161. $changerow=1;
  3162. $string.=$listtext;
  3163. $listtext=$list_r[1];
  3164. }
  3165. if($no%$lencord==0||($num%$lencord<>0&&$num==$no))
  3166. {
  3167. $ok+=1;
  3168. $pagenum=ceil($no/$lencord);
  3169. //首页
  3170. if($pagenum==1)
  3171. {
  3172. $path=$dopath.$dofile.$dotype;
  3173. }
  3174. else
  3175. {
  3176. $path=$dopath.$dofile.'_'.$ok.$dotype;
  3177. }
  3178. //取得分页参数
  3179. $returnpager=$thefun($num,$pagenum,$dolink,$dotype,$page,$lencord,$ok,$myoptions,$pagefunr);
  3180. $showpage=$returnpager['showpage'];
  3181. $myoptions=$returnpager['option'];
  3182. $list1=str_replace($bereplistpage,$showpage,$list_r[0]);
  3183. $list2=str_replace($bereplistpage,$showpage,$list_r[2]);
  3184. //多余数据
  3185. if($changerow<=$rownum&&$listtext<>$list_r[1])
  3186. {
  3187. $string.=$listtext;
  3188. }
  3189. $listtext=$list_r[1];
  3190. $changerow=1;
  3191. $string=$list1.$string.$list2;
  3192. //替换分页数
  3193. $string=str_replace('[!--list.pageno--]',($pagenum==1?'':$pagenum),$string);
  3194. WriteFiletext($path,$classlevel.$string);
  3195. $string='';
  3196. }
  3197. $no++;
  3198. }
  3199. $empire->free($sql);
  3200. }
  3201. //返回分页
  3202. function ReturnListpageStr($pagenum,$page,$lencord,$num,$pagelink,$options){
  3203. global $public_r;
  3204. $temp=$public_r['listpagetemp'];
  3205. $temp=str_replace('[!--thispage--]',$pagenum,$temp);//页次
  3206. $temp=str_replace('[!--pagenum--]',$page,$temp);//总页数
  3207. $temp=str_replace('[!--lencord--]',$lencord,$temp);//每页显示条数
  3208. $temp=str_replace('[!--num--]',$num,$temp);//总条数
  3209. $temp=str_replace('[!--pagelink--]',$pagelink,$temp);//页面链接
  3210. $temp=str_replace('[!--options--]',$options,$temp);//下拉分页
  3211. return $temp;
  3212. }
  3213. //投稿生成html
  3214. function DoGetHtml($classid,$id){
  3215. global $empire,$class_r,$public_r,$dbtbpre;
  3216. $classid=intval($classid);
  3217. $id=intval($id);
  3218. $tbname=$class_r[$classid][tbname];
  3219. //不存在
  3220. if(!$id||!$classid||!$tbname)
  3221. {
  3222. echo"<script>self.location.href='".$public_r['newsurl']."';</script>";
  3223. exit();
  3224. }
  3225. $r=$empire->fetch1("select * from {$dbtbpre}ecms_".$tbname." where id='$id'");
  3226. if(!$r['id']||$classid!=$r['classid'])
  3227. {
  3228. echo"<script>self.location.href='".$public_r['newsurl']."';</script>";
  3229. exit();
  3230. }
  3231. $titleurl=sys_ReturnBqAutoTitleLink($r);
  3232. //已生成
  3233. if(!empty($r[havehtml]))
  3234. {
  3235. return $titleurl;
  3236. }
  3237. //生成html
  3238. GetHtml($r['classid'],$r['id'],$r,1);
  3239. return $titleurl;
  3240. }
  3241. //内容变量处理
  3242. function GetHtmlRepVar($tempr,$classid){
  3243. global $public_r,$class_r,$class_zr,$fun_r,$empire,$dbtbpre,$emod_r,$class_tr,$level_r,$etable_r;
  3244. $mid=$class_r[$classid]['modid'];
  3245. $tbname=$class_r[$classid][tbname];
  3246. $newstemptext=$tempr[temptext];
  3247. $formatdate=$tempr[showdate];
  3248. //分页字段
  3249. $expage='[!--empirenews.page--]';//分页符
  3250. $pf=$emod_r[$mid]['pagef'];
  3251. //变量
  3252. $tempf=$emod_r[$mid]['tempf'];
  3253. $fr=explode(',',$tempf);
  3254. $fcount=count($fr)-1;
  3255. //变量替换
  3256. $newstempstr=$newstemptext;//模板
  3257. //总体页面变量
  3258. $newstempstr=str_replace('[!--class.menu--]',$public_r['classnavs'],$newstempstr);//栏目导航
  3259. $newstempstr=str_replace('[!--newsnav--]','<?=$grurl?>',$newstempstr);//位置导航
  3260. $newstempstr=str_replace('[!--pagetitle--]','<?=$grpagetitle?>',$newstempstr);
  3261. $newstempstr=str_replace('[!--pagekey--]','<?=$ecms_gr[keyboard]?>',$newstempstr);
  3262. $newstempstr=str_replace('[!--pagedes--]','<?=$grpagetitle?>',$newstempstr);
  3263. $newstempstr=str_replace('[!--self.classid--]','<?=$ecms_gr[classid]?>',$newstempstr);
  3264. $newstempstr=str_replace('[!--bclass.id--]','<?=$grbclassid?>',$newstempstr);
  3265. $newstempstr=str_replace('[!--bclass.name--]','<?=$class_r[$grbclassid][classname]?>',$newstempstr);
  3266. $newstempstr=str_replace('[!--news.url--]',$public_r['newsurl'],$newstempstr);
  3267. //信息字段变量
  3268. for($i=1;$i<$fcount;$i++)
  3269. {
  3270. $f=$fr[$i];
  3271. $value='$ecms_gr['.$f.']';
  3272. if($f==$pf)//分页字段
  3273. {
  3274. $value='strstr('.$value.',\''.$expage.'\')?\'[!--'.$f.'--]\':'.$value;
  3275. }
  3276. elseif($f=='downpath')//下载地址
  3277. {
  3278. $value='ReturnDownSoftHtml($ecms_gr)';
  3279. }
  3280. elseif($f=='onlinepath')//观看地址
  3281. {
  3282. $value='ReturnOnlinepathHtml($ecms_gr)';
  3283. }
  3284. elseif($f=='morepic')//图片集
  3285. {
  3286. $value='ReturnMorepicpathHtml($ecms_gr)';
  3287. }
  3288. elseif($f=='newstime')//时间
  3289. {
  3290. $value='date(\''.$formatdate.'\','.$value.')';
  3291. }
  3292. elseif($f=='befrom')//信息来源
  3293. {
  3294. $value='$docheckrep[1]?ReplaceBefrom('.$value.'):'.$value;
  3295. }
  3296. elseif($f=='writer')//作者
  3297. {
  3298. $value='$docheckrep[2]?ReplaceWriter('.$value.'):'.$value;
  3299. }
  3300. elseif($f=='titlepic')//标题图片
  3301. {
  3302. $value='empty('.$value.')?$public_r[newsurl].\'e/data/images/notimg.gif\':'.$value;
  3303. }
  3304. elseif($f=='title')//标题
  3305. {
  3306. }
  3307. else//正常字段
  3308. {
  3309. if(!strstr($emod_r[$mid]['editorf'],','.$f.','))
  3310. {
  3311. if(strstr($emod_r[$mid]['tobrf'],','.$f.','))//加br
  3312. {
  3313. $value='nl2br('.$value.')';
  3314. }
  3315. if(!strstr($emod_r[$mid]['dohtmlf'],','.$f.','))//去除html
  3316. {
  3317. $value='RepFieldtextNbsp(ehtmlspecialchars('.$value.'))';
  3318. }
  3319. }
  3320. }
  3321. $newstempstr=str_replace('[!--'.$f.'--]','<?='.$value.'?>',$newstempstr);
  3322. }
  3323. //固定变量
  3324. $newstempstr=str_replace('[!--id--]','<?=$ecms_gr[id]?>',$newstempstr);
  3325. $newstempstr=str_replace('[!--classid--]','<?=$ecms_gr[classid]?>',$newstempstr);
  3326. $newstempstr=str_replace('[!--class.name--]','<?=$class_r[$ecms_gr[classid]][classname]?>',$newstempstr);
  3327. $newstempstr=str_replace('[!--ttid--]','<?=$ecms_gr[ttid]?>',$newstempstr);
  3328. $newstempstr=str_replace('[!--tt.name--]','<?=$class_tr[$ecms_gr[ttid]][tname]?>',$newstempstr);
  3329. $newstempstr=str_replace('[!--tt.url--]','<?=sys_ReturnBqInfoTypeUrl($ecms_gr[ttid])?>',$newstempstr);
  3330. $newstempstr=str_replace('[!--onclick--]','<?=$ecms_gr[onclick]?>',$newstempstr);
  3331. $newstempstr=str_replace('[!--userfen--]','<?=$ecms_gr[userfen]?>',$newstempstr);
  3332. $newstempstr=str_replace('[!--username--]','<?=$ecms_gr[username]?>',$newstempstr);
  3333. //带链接的用户名
  3334. $newstempstr=str_replace('[!--linkusername--]','<?=$ecms_gr[ismember]==1&&$ecms_gr[userid]?\'<a href="\'.$public_r[newsurl].\'e/space/?userid=\'.$ecms_gr[userid].\'" target=_blank>\'.$ecms_gr[username].\'</a>\':$ecms_gr[username]?>',$newstempstr);
  3335. $newstempstr=str_replace('[!--userid--]','<?=$ecms_gr[userid]?>',$newstempstr);
  3336. //相关链接
  3337. $keyboardtext='<?=GetKeyboard($ecms_gr[keyboard],$ecms_gr[keyid],$ecms_gr[classid],$ecms_gr[id],$class_r[$ecms_gr[classid]][link_num])?>';
  3338. $newstempstr=str_replace('[!--other.link--]',$keyboardtext,$newstempstr);
  3339. $newstempstr=str_replace('[!--plnum--]','<?=$ecms_gr[plnum]?>',$newstempstr);
  3340. $newstempstr=str_replace('[!--totaldown--]','<?=$ecms_gr[totaldown]?>',$newstempstr);
  3341. $newstempstr=str_replace('[!--keyboard--]','<?=$ecms_gr[keyboard]?>',$newstempstr);
  3342. //链接
  3343. $newstempstr=str_replace('[!--titleurl--]','<?=$grtitleurl?>',$newstempstr);
  3344. //点击
  3345. $onclick='<?=\'<script src="\'.$public_r[newsurl].\'e/public/onclick/?enews=donews&classid=\'.$ecms_gr[classid].\'&id=\'.$ecms_gr[id].\'"></script>\'?>';
  3346. $newstempstr=str_replace('[!--page.stats--]',$onclick,$newstempstr);
  3347. $newstempstr=str_replace('[!--class.url--]','<?=$grclassurl?>',$newstempstr);
  3348. //下一篇
  3349. if(strstr($newstemptext,'[!--info.next--]'))
  3350. {
  3351. $infonext='<?php
  3352. $next_r=$empire->fetch1("select isurl,titleurl,classid,id,title from {$dbtbpre}ecms_".$class_r[$ecms_gr[classid]][tbname]." where id>$ecms_gr[id] and classid=\'$ecms_gr[classid]\' order by id limit 1");
  3353. if(empty($next_r[id]))
  3354. {$infonext="<a href=\'".$grclassurl."\'>'.$fun_r['HaveNoNextLink'].'</a>";}
  3355. else
  3356. {
  3357. $nexttitleurl=sys_ReturnBqTitleLink($next_r);
  3358. $infonext="<a href=\'".$nexttitleurl."\'>".$next_r[title]."</a>";
  3359. }
  3360. echo $infonext;
  3361. ?>';
  3362. $newstempstr=str_replace('[!--info.next--]',$infonext,$newstempstr);
  3363. }
  3364. //上一篇
  3365. if(strstr($newstemptext,'[!--info.pre--]'))
  3366. {
  3367. $infopre='<?php
  3368. $next_r=$empire->fetch1("select isurl,titleurl,classid,id,title from {$dbtbpre}ecms_".$class_r[$ecms_gr[classid]][tbname]." where id<$ecms_gr[id] and classid=\'$ecms_gr[classid]\' order by id desc limit 1");
  3369. if(empty($next_r[id]))
  3370. {$infonext="<a href=\'".$grclassurl."\'>'.$fun_r['HaveNoNextLink'].'</a>";}
  3371. else
  3372. {
  3373. $nexttitleurl=sys_ReturnBqTitleLink($next_r);
  3374. $infonext="<a href=\'".$nexttitleurl."\'>".$next_r[title]."</a>";
  3375. }
  3376. echo $infonext;
  3377. ?>';
  3378. $newstempstr=str_replace('[!--info.pre--]',$infopre,$newstempstr);
  3379. }
  3380. //投票
  3381. if(strstr($newstemptext,'[!--info.vote--]'))
  3382. {
  3383. $newstempstr=str_replace('[!--info.vote--]','<?=sys_GetInfoVote($ecms_gr[classid],$ecms_gr[id])?>',$newstempstr);
  3384. }
  3385. return $newstempstr;
  3386. }
  3387. //生成内容文件
  3388. function GetHtml($classid,$id,$add,$ecms=0,$doall=0){
  3389. global $public_r,$class_r,$class_zr,$fun_r,$empire,$dbtbpre,$emod_r,$class_tr,$level_r,$etable_r;
  3390. $mid=$class_r[$classid]['modid'];
  3391. $tbname=$class_r[$classid][tbname];
  3392. if(InfoIsInTable($tbname))//内部表
  3393. {
  3394. return '';
  3395. }
  3396. if($ecms==0)//主表
  3397. {
  3398. $add=$empire->fetch1("select ".ReturnSqlTextF($mid,1)." from {$dbtbpre}ecms_".$tbname." where id='$id' limit 1");
  3399. }
  3400. $add['id']=$id;
  3401. $add['classid']=$classid;
  3402. if($add['isurl'])
  3403. {
  3404. return '';
  3405. }
  3406. if(empty($doall))
  3407. {
  3408. if(!$add['stb']||$class_r[$add[classid]][showdt]==2||strstr($public_r['nreinfo'],','.$add['classid'].','))//不生成
  3409. {
  3410. return '';
  3411. }
  3412. }
  3413. //副表
  3414. $addr=$empire->fetch1("select ".ReturnSqlFtextF($mid)." from {$dbtbpre}ecms_".$tbname."_data_".$add[stb]." where id='$add[id]' limit 1");
  3415. $add=array_merge($add,$addr);
  3416. //路径
  3417. $iclasspath=ReturnSaveInfoPath($add[classid],$add[id]);
  3418. $doclasspath=eReturnTrueEcmsPath().$iclasspath;//moreport
  3419. $createinfopath=$doclasspath;
  3420. //建立日期目录
  3421. $newspath='';
  3422. if($add[newspath])
  3423. {
  3424. $createpath=$doclasspath.$add[newspath];
  3425. if(!file_exists($createpath))
  3426. {
  3427. $r[newspath]=FormatPath($add[classid],$add[newspath],1);
  3428. }
  3429. $createinfopath.=$add[newspath].'/';
  3430. $newspath=$add[newspath].'/';
  3431. }
  3432. //新建存放目录
  3433. if($class_r[$add[classid]][filename]==3)
  3434. {
  3435. $createinfopath.=ReturnInfoSPath($add['filename']);
  3436. DoMkdir($createinfopath);
  3437. $fn3=1;
  3438. }
  3439. //存文本
  3440. if($emod_r[$mid]['savetxtf'])
  3441. {
  3442. $stf=$emod_r[$mid]['savetxtf'];
  3443. if($add[$stf])
  3444. {
  3445. $add[$stf]=GetTxtFieldText($add[$stf]);
  3446. }
  3447. }
  3448. eAutodo_AddDo('ReNewsHtml',$classid,$id,0,0,0);//moreportdo
  3449. $GLOBALS['navclassid']=$add[classid];
  3450. $GLOBALS['navinfor']=$add;
  3451. //取得内容模板
  3452. $add[newstempid]=$add[newstempid]?$add[newstempid]:$class_r[$add[classid]][newstempid];
  3453. $newstemp_r=$empire->fetch1("select temptext,showdate from ".GetTemptb("enewsnewstemp")." where tempid='$add[newstempid]' limit 1");
  3454. $newstemp_r['tempid']=$add['newstempid'];
  3455. if($public_r['opennotcj'])//启用反采集
  3456. {
  3457. $newstemp_r['temptext']=ReturnNotcj($newstemp_r['temptext']);
  3458. }
  3459. $newstemptext=$newstemp_r[temptext];
  3460. $formatdate=$newstemp_r[showdate];
  3461. //文件类型/权限
  3462. if($add[groupid]||$class_r[$add[classid]]['cgtoinfo'])
  3463. {
  3464. if(empty($add[newspath]))
  3465. {
  3466. $include='';
  3467. }
  3468. else
  3469. {
  3470. $pr=explode('/',$add[newspath]);
  3471. for($i=0;$i<count($pr);$i++)
  3472. {
  3473. $include.='../';
  3474. }
  3475. }
  3476. if($fn3==1)
  3477. {
  3478. $include.='../';
  3479. }
  3480. $pr=explode('/',$iclasspath);
  3481. $pcount=count($pr);
  3482. for($i=0;$i<$pcount-1;$i++)
  3483. {
  3484. $include.='../';
  3485. }
  3486. $include1=$include;
  3487. $include.='e/class/CheckLevel.php';
  3488. $filetype='.php';
  3489. $addlevel="<?php
  3490. define('empirecms','wm_chief');
  3491. \$check_tbname='".$class_r[$add[classid]][tbname]."';
  3492. \$check_infoid=".$add[id].";
  3493. \$check_classid=".$add[classid].";
  3494. \$check_path=\"".$include1."\";
  3495. require(\"".$include."\");
  3496. ?>";
  3497. }
  3498. else
  3499. {
  3500. $filetype=$class_r[$add[classid]][filetype];
  3501. $addlevel='';
  3502. }
  3503. //取得本目录链接
  3504. if($class_r[$add[classid]][classurl]&&$class_r[$add[classid]][ipath]=='')//域名
  3505. {
  3506. $dolink=$class_r[$add[classid]][classurl].'/'.$newspath;
  3507. }
  3508. else
  3509. {
  3510. $dolink=$public_r[newsurl].$iclasspath.$newspath;
  3511. }
  3512. //返回替换验证字符
  3513. $docheckrep=ReturnCheckDoRepStr();
  3514. if($add[newstext])
  3515. {
  3516. if(empty($public_r['dorepword'])&&$docheckrep[3])
  3517. {
  3518. $add[newstext]=ReplaceWord($add[newstext]);//过滤字符
  3519. }
  3520. if(empty($public_r['dorepkey'])&&$docheckrep[4]&&!empty($add[dokey]))//替换关键字
  3521. {
  3522. $add[newstext]=ReplaceKey($add['newstext'],$add['classid']);
  3523. }
  3524. if($public_r['opencopytext'])
  3525. {
  3526. $add[newstext]=AddNotCopyRndStr($add[newstext]);//随机复制字符
  3527. }
  3528. }
  3529. //返回编译
  3530. $newstemptext=GetInfoNewsBq($classid,$newstemp_r,$add,$docheckrep);
  3531. //分页字段
  3532. $expage='[!--empirenews.page--]';//分页符
  3533. $pf=$emod_r[$mid]['pagef'];
  3534. //变量替换
  3535. $newstempstr=$newstemptext;//模板
  3536. //分页
  3537. if($pf&&strstr($add[$pf],$expage))//有分页
  3538. {
  3539. $n_r=explode($expage,$add[$pf]);
  3540. $thispagenum=count($n_r);
  3541. //取得分页
  3542. $thefun=$public_r['textpagefun']?$public_r['textpagefun']:'sys_ShowTextPage';
  3543. //下拉式分页
  3544. if(strstr($newstemptext,'[!--title.select--]'))
  3545. {
  3546. $dotitleselect=sys_ShowTextPageSelect($thispagenum,$dolink,$add,$filetype,$n_r);
  3547. }
  3548. for($j=1;$j<=$thispagenum;$j++)
  3549. {
  3550. $string=$newstempstr;//模板
  3551. $truepage='';
  3552. $titleselect='';
  3553. //下一页链接
  3554. if($thispagenum==$j)
  3555. {
  3556. $thisnextlink=$dolink.$add[filename].$filetype;
  3557. }
  3558. else
  3559. {
  3560. $thisj=$j+1;
  3561. $thisnextlink=$dolink.$add[filename].'_'.$thisj.$filetype;
  3562. }
  3563. $k=$j-1;
  3564. if($j==1)
  3565. {
  3566. $file=$doclasspath.$newspath.$add[filename].$filetype;
  3567. $ptitle=$add[title];
  3568. }
  3569. else
  3570. {
  3571. $file=$doclasspath.$newspath.$add[filename].'_'.$j.$filetype;
  3572. $ti_r=explode('[/!--empirenews.page--]',$n_r[$k]);
  3573. if(count($ti_r)>=2)
  3574. {
  3575. $ptitle=$ti_r[0];
  3576. $n_r[$k]=$ti_r[1];
  3577. }
  3578. else
  3579. {
  3580. $ptitle=$add[title].'('.$j.')';
  3581. }
  3582. }
  3583. //取得当前页
  3584. if($thispagenum!=1)
  3585. {
  3586. $truepage=$thefun($thispagenum,$j,$dolink,$add,$filetype,'');
  3587. $titleselect=str_replace("?".$j."\">","?".$j."\" selected>",$dotitleselect);
  3588. }
  3589. //替换变量
  3590. $newstext=$n_r[$k];
  3591. if(!strstr($emod_r[$mid]['editorf'],','.$pf.','))
  3592. {
  3593. if(strstr($emod_r[$mid]['tobrf'],','.$pf.','))//加br
  3594. {
  3595. $newstext=nl2br($newstext);
  3596. }
  3597. if(!strstr($emod_r[$mid]['dohtmlf'],','.$pf.','))//去除html
  3598. {
  3599. $newstext=ehtmlspecialchars($newstext);
  3600. $newstext=RepFieldtextNbsp($newstext);
  3601. }
  3602. }
  3603. $string=str_replace('[!--'.$pf.'--]',$newstext,$string);
  3604. $string=str_replace('[!--p.title--]',strip_tags($ptitle),$string);
  3605. $string=str_replace('[!--next.page--]',$thisnextlink,$string);
  3606. $string=str_replace('[!--page.url--]',$truepage,$string);
  3607. $string=str_replace('[!--title.select--]',$titleselect,$string);
  3608. //写文件
  3609. WriteFiletext($file,$addlevel.$string);
  3610. }
  3611. }
  3612. else
  3613. {
  3614. $file=$doclasspath.$newspath.$add[filename].$filetype;
  3615. $string=$newstempstr;//模板
  3616. //替换变量
  3617. $string=str_replace('[!--p.title--]',$add[title],$string);
  3618. $string=str_replace('[!--next.page--]','',$string);
  3619. $string=str_replace('[!--page.url--]','',$string);
  3620. $string=str_replace('[!--title.select--]','',$string);
  3621. //写文件
  3622. WriteFiletext($file,$addlevel.$string);
  3623. }
  3624. //设为已生成
  3625. if(empty($doall)&&empty($add['havehtml']))
  3626. {
  3627. $empire->query("update {$dbtbpre}ecms_".$class_r[$add[classid]][tbname]."_index set havehtml=1 where id='$add[id]' limit 1");
  3628. $empire->query("update {$dbtbpre}ecms_".$class_r[$add[classid]][tbname]." set havehtml=1 where id='$add[id]' limit 1");
  3629. }
  3630. }
  3631. //返回随机字符
  3632. function ReturnNotcj($string){
  3633. global $notcj_r,$notcjnum;
  3634. if(empty($notcjnum))
  3635. {
  3636. $rep="";
  3637. }
  3638. else
  3639. {
  3640. $i=rand(1,$notcjnum);
  3641. $rep=$notcj_r[$i];
  3642. }
  3643. $cjword="<!--ecms.*-->";
  3644. $string=str_replace($cjword,$rep,$string);
  3645. return $string;
  3646. }
  3647. //取得相关链接
  3648. function GetKeyboard($keyboard,$keyid,$classid,$id,$link_num){
  3649. global $empire,$public_r,$class_r,$fun_r,$dbtbpre;
  3650. if($keyid&&$link_num)
  3651. {
  3652. $add="id in (".$keyid.")";
  3653. $tr=$empire->fetch1("select otherlinktemp,otherlinktempsub,otherlinktempdate from ".GetTemptb("enewspubtemp")." limit 1");//取得相关链接模板
  3654. $temp_r=explode("[!--empirenews.listtemp--]",$tr[otherlinktemp]);
  3655. $key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");
  3656. while($link_r=$empire->fetch($key_sql))
  3657. {
  3658. $keyboardtext.=RepOtherTemp($temp_r[1],$link_r,$tr);
  3659. }
  3660. $keyboardtext=$temp_r[0].$keyboardtext.$temp_r[2];
  3661. }
  3662. else
  3663. {
  3664. $keyboardtext=$fun_r['NotLinkNews'];
  3665. }
  3666. return $keyboardtext;
  3667. }
  3668. //替换相关链接模板
  3669. function RepOtherTemp($temptext,$r,$tr){
  3670. global $public_r,$class_r;
  3671. $title=sub($r[title],0,$tr['otherlinktempsub'],false);
  3672. $r['newstime']=date($tr['otherlinktempdate'],$r['newstime']);
  3673. $titlelink=sys_ReturnBqTitleLink($r);//标题链接
  3674. $temptext=str_replace("[!--title--]",$title,$temptext);
  3675. $temptext=str_replace("[!--oldtitle--]",$r[title],$temptext);
  3676. $temptext=str_replace("[!--titleurl--]",$titlelink,$temptext);
  3677. $temptext=str_replace("[!--newstime--]",$r[newstime],$temptext);
  3678. if(empty($r[titlepic]))
  3679. {
  3680. $titlepic=$public_r[newsurl]."e/data/images/notimg.gif";
  3681. }
  3682. else
  3683. {
  3684. $titlepic=$r[titlepic];
  3685. }
  3686. $temptext=str_replace("[!--titlepic--]",$titlepic,$temptext);
  3687. return $temptext;
  3688. }
  3689. //返回下载地址html代码
  3690. function ReturnDownSoftHtml($add){
  3691. global $class_r,$public_r,$fun_r,$level_r;
  3692. if(empty($add[downpath]))
  3693. {
  3694. return '';
  3695. }
  3696. //每行显示条数
  3697. $down_num=$class_r[$add[classid]][down_num]?$class_r[$add[classid]][down_num]:1;
  3698. //替换模板
  3699. $ydownsofttemp=$public_r[downsofttemp];
  3700. $ydownsofttemp=str_replace('[!--classid--]',$add[classid],$ydownsofttemp);
  3701. $ydownsofttemp=str_replace('[!--id--]',$add[id],$ydownsofttemp);
  3702. $ydownsofttemp=str_replace('[!--title--]',$add[title],$ydownsofttemp);
  3703. $ydownsofttemp=str_replace('[!--news.url--]',$public_r[newsurl],$ydownsofttemp);
  3704. //组合地址
  3705. $all_downpath='';
  3706. $path_r=explode("\r\n",$add[downpath]);
  3707. $count=count($path_r);
  3708. for($pj=0;$pj<$count;$pj++)
  3709. {
  3710. $p=$pj+1;
  3711. if($p%$down_num==0)
  3712. {
  3713. $ok='<br>';
  3714. }
  3715. else
  3716. {
  3717. $ok='';
  3718. }
  3719. //相同
  3720. if($count==$p)
  3721. {
  3722. $ok='';
  3723. }
  3724. if($pj%$down_num==0||$pj==0)
  3725. {
  3726. $nbsp='';
  3727. }
  3728. else
  3729. {
  3730. $nbsp='&nbsp;&nbsp;';
  3731. }
  3732. $showdown_r=explode('::::::',$path_r[$pj]);
  3733. if(count($showdown_r)<2)
  3734. {
  3735. $showdown_r[0]=$fun_r['DownPath'].$p;
  3736. }
  3737. //模板
  3738. $downsofttemp=RepDownOnlinePathTemp($add,$ydownsofttemp,$pj,$showdown_r,0);
  3739. $all_downpath.=$nbsp.stripSlashes($downsofttemp).$ok;
  3740. }
  3741. $value=$all_downpath;
  3742. return $value;
  3743. }
  3744. //替换下载在线地址模板
  3745. function RepDownOnlinePathTemp($add,$downsofttemp,$pj,$showdown_r,$ecms){
  3746. global $public_r,$level_r,$fun_r;
  3747. if($ecms==0)//下载
  3748. {
  3749. $downurl=$public_r[newsurl]."e/DownSys/DownSoft/?classid=$add[classid]&id=$add[id]&pathid=$pj";
  3750. }
  3751. else//在线
  3752. {
  3753. $downurl=$public_r[newsurl]."e/DownSys/play/?classid=$add[classid]&id=$add[id]&pathid=$pj";
  3754. }
  3755. $downsofttemp=str_replace('[!--down.url--]',$downurl,$downsofttemp);
  3756. $downsofttemp=str_replace('[!--down.name--]',$showdown_r[0],$downsofttemp);
  3757. $downsofttemp=str_replace('[!--pathid--]',$pj,$downsofttemp);
  3758. $downsofttemp=str_replace('[!--fen--]',$showdown_r[3],$downsofttemp);
  3759. $group=$showdown_r[2]?$level_r[$showdown_r[2]][groupname]:$fun_r['hguest'];
  3760. $downsofttemp=str_replace('[!--group--]',$group,$downsofttemp);
  3761. if(strstr($downsofttemp,'[!--true.down.url--]'))
  3762. {
  3763. $durl=stripSlashes($showdown_r[1]);
  3764. $durlr=ReturnDownQzPath($durl,$showdown_r[4]);
  3765. $durl=$durlr['repath'];
  3766. $downsofttemp=str_replace('[!--true.down.url--]',$durl,$downsofttemp);
  3767. }
  3768. return $downsofttemp;
  3769. }
  3770. //返回在线地址html代码
  3771. function ReturnOnlinepathHtml($add){
  3772. global $class_r,$public_r,$fun_r,$level_r;
  3773. if(empty($add[onlinepath]))
  3774. {
  3775. return '';
  3776. }
  3777. //每行显示条数
  3778. $down_num=$class_r[$add[classid]][online_num]?$class_r[$add[classid]][online_num]:1;
  3779. //替换模板
  3780. $yonlinemovietemp=$public_r[onlinemovietemp];
  3781. $yonlinemovietemp=str_replace('[!--classid--]',$add[classid],$yonlinemovietemp);
  3782. $yonlinemovietemp=str_replace('[!--id--]',$add[id],$yonlinemovietemp);
  3783. $yonlinemovietemp=str_replace('[!--title--]',$add[title],$yonlinemovietemp);
  3784. $yonlinemovietemp=str_replace('[!--news.url--]',$public_r[newsurl],$yonlinemovietemp);
  3785. //地址
  3786. $all_downpath='';
  3787. $path_r=explode("\r\n",$add[onlinepath]);
  3788. $count=count($path_r);
  3789. for($pj=0;$pj<$count;$pj++)
  3790. {
  3791. $p=$pj+1;
  3792. if($p%$down_num==0)
  3793. {
  3794. $ok='<br>';
  3795. }
  3796. else
  3797. {
  3798. $ok='';
  3799. }
  3800. //相同
  3801. if($count==$p)
  3802. {
  3803. $ok='';
  3804. }
  3805. if($pj%$down_num==0||$pj==0)
  3806. {
  3807. $nbsp='';
  3808. }
  3809. else
  3810. {
  3811. $nbsp='&nbsp;&nbsp;';
  3812. }
  3813. $showdown_r=explode('::::::',$path_r[$pj]);
  3814. if(count($showdown_r)<2)
  3815. {
  3816. $showdown_r[0]=$p;
  3817. }
  3818. //模板
  3819. $downsofttemp=RepDownOnlinePathTemp($add,$yonlinemovietemp,$pj,$showdown_r,1);
  3820. $all_downpath.=$nbsp.stripSlashes($downsofttemp).$ok;
  3821. }
  3822. $value=$all_downpath;
  3823. return $value;
  3824. }
  3825. //返回图片集html代码
  3826. function ReturnMorepicpathHtml($add){
  3827. global $public_r,$fun_r;
  3828. if(empty($add[morepic]))
  3829. {
  3830. return '';
  3831. }
  3832. $line=$add[num]?$add[num]:1;//每行显示
  3833. $picpath='';
  3834. $path_r=explode("\r\n",$add[morepic]);
  3835. for($pj=0;$pj<count($path_r);$pj++)
  3836. {
  3837. $p=$pj+1;
  3838. if(($p-1)%$line==0||$p==1)
  3839. {
  3840. $picpath.='<tr>';
  3841. }
  3842. $showdown_r=explode('::::::',$path_r[$pj]);
  3843. //显示图片名称
  3844. $name='';
  3845. if(!empty($showdown_r[2]))
  3846. {
  3847. $name="<br><span style='line-height=18pt'>".$showdown_r[2]."</span>";
  3848. }
  3849. $width=$add[width]?" width='".$add[width]."'":'';//宽度
  3850. $height=$add[height]?" height='".$add[height]."'":'';//高度
  3851. $picpath.="<td align=center><a href='".$public_r[newsurl]."e/ViewImg/index.html?url=".$showdown_r[1]."' target=_blank><img src='".$showdown_r[0]."'".$width.$height." border=0>".$name."</a></td>";
  3852. //分割
  3853. if($p%$line==0)
  3854. {
  3855. $picpath.='</tr>';
  3856. }
  3857. }
  3858. if($p<>0)
  3859. {
  3860. $table="<table width='100%' border=0 cellpadding=4 cellspacing=4>";
  3861. $table1="</table>";
  3862. $ys=$line-$p%$line;
  3863. $dotr=0;
  3864. for($j=0;$j<$ys&&$ys!=$line;$j++)
  3865. {
  3866. $dotr=1;
  3867. $picpath.='<td></td>';
  3868. }
  3869. if($dotr==1)
  3870. {
  3871. $picpath.='</tr>';
  3872. }
  3873. }
  3874. $value=$table.$picpath.$table1;
  3875. return $value;
  3876. }
  3877. //生成js
  3878. function GetNewsJs($classid,$line,$sub,$showdate,$enews=0,$tempr){
  3879. global $empire,$public_r,$class_r,$class_tr,$emod_r,$etable_r,$dbtbpre,$eyh_r;
  3880. if(empty($line))
  3881. {
  3882. $line=10;
  3883. }
  3884. if(empty($sub))
  3885. {
  3886. $sub=26;
  3887. }
  3888. //栏目
  3889. if($enews==0||$enews==1||$enews==2||$enews==9||$enews==12||$enews==15)
  3890. {
  3891. $where=$class_r[$classid][islast]?"classid='$classid'":ReturnClass($class_r[$classid][sonclass]);
  3892. $tbname=$class_r[$classid][tbname];
  3893. $mid=$class_r[$classid][modid];
  3894. $yhid=$class_r[$classid][yhid];
  3895. }
  3896. elseif($enews==25||$enews==26||$enews==27||$enews==28||$enews==29||$enews==30)//标题分类
  3897. {
  3898. $where="ttid='$classid'";
  3899. $mid=$class_tr[$classid][mid];
  3900. $tbname=$emod_r[$mid][tbname];
  3901. $yhid=$class_tr[$classid][yhid];
  3902. }
  3903. $allpath=eReturnTrueEcmsPath().'d/js/js/';
  3904. $ttpath=eReturnTrueEcmsPath().'d/js/class/tt'.$classid.'_';
  3905. $classpath=eReturnTrueEcmsPath().'d/js/class/class'.$classid.'_';
  3906. $query='';
  3907. $qand=' and ';
  3908. if($enews==0)//栏目最新
  3909. {
  3910. $query=' where '.$where;
  3911. $order='newstime';
  3912. $newsjs=$classpath.'newnews.js';
  3913. $yhvar='bqnew';
  3914. }
  3915. elseif($enews==1)//栏目热门
  3916. {
  3917. $query=' where '.$where;
  3918. $order="onclick";
  3919. $newsjs=$classpath.'hotnews.js';
  3920. $yhvar='bqhot';
  3921. }
  3922. elseif($enews==2)//栏目推荐
  3923. {
  3924. $query=' where '.$where.' and isgood>0';
  3925. $order='newstime';
  3926. $newsjs=$classpath.'goodnews.js';
  3927. $yhvar='bqgood';
  3928. }
  3929. elseif($enews==9)//各栏目评论排行
  3930. {
  3931. $query=' where '.$where;
  3932. $order='plnum';
  3933. $newsjs=$classpath.'hotplnews.js';
  3934. $yhvar='bqpl';
  3935. }
  3936. elseif($enews==12)//各栏目头条
  3937. {
  3938. $query=' where '.$where.' and firsttitle>0';
  3939. $order='newstime';
  3940. $newsjs=$classpath.'firstnews.js';
  3941. $yhvar='bqfirst';
  3942. }
  3943. elseif($enews==3)//所有最新
  3944. {
  3945. $qand=' where ';
  3946. $tbname=$public_r['tbname'];
  3947. $order='newstime';
  3948. $newsjs=$allpath.'newnews.js';
  3949. $mid=$etable_r[$tbname][mid];
  3950. $yhvar='bqnew';
  3951. $yhid=$etable_r[$tbname][yhid];
  3952. }
  3953. elseif($enews==4)//所有点击排行
  3954. {
  3955. $qand=' where ';
  3956. $tbname=$public_r['tbname'];
  3957. $order='onclick';
  3958. $newsjs=$allpath.'hotnews.js';
  3959. $mid=$etable_r[$tbname][mid];
  3960. $yhvar='bqhot';
  3961. $yhid=$etable_r[$tbname][yhid];
  3962. }
  3963. elseif($enews==5)//所有推荐
  3964. {
  3965. $tbname=$public_r['tbname'];
  3966. $query=' where isgood>0';
  3967. $order='newstime';
  3968. $newsjs=$allpath.'goodnews.js';
  3969. $mid=$etable_r[$tbname][mid];
  3970. $yhvar='bqgood';
  3971. $yhid=$etable_r[$tbname][yhid];
  3972. }
  3973. elseif($enews==10)//所有评论排行
  3974. {
  3975. $qand=' where ';
  3976. $tbname=$public_r['tbname'];
  3977. $order='plnum';
  3978. $newsjs=$allpath.'hotplnews.js';
  3979. $mid=$etable_r[$tbname][mid];
  3980. $yhvar='bqpl';
  3981. $yhid=$etable_r[$tbname][yhid];
  3982. }
  3983. elseif($enews==13)//所有头条
  3984. {
  3985. $tbname=$public_r['tbname'];
  3986. $query=' where firsttitle>0';
  3987. $order='newstime';
  3988. $newsjs=$allpath.'firstnews.js';
  3989. $mid=$etable_r[$tbname][mid];
  3990. $yhvar='bqfirst';
  3991. $yhid=$etable_r[$tbname][yhid];
  3992. }
  3993. elseif($enews==25)//标题分类最新
  3994. {
  3995. $query=' where '.$where;
  3996. $order='newstime';
  3997. $newsjs=$ttpath.'newnews.js';
  3998. $yhvar='bqnew';
  3999. }
  4000. elseif($enews==26)//标题分类点击排行
  4001. {
  4002. $query=' where '.$where;
  4003. $order='onclick';
  4004. $newsjs=$ttpath.'hotnews.js';
  4005. $yhvar='bqhot';
  4006. }
  4007. elseif($enews==27)//标题分类推荐
  4008. {
  4009. $query=' where '.$where.' and isgood>0';
  4010. $order='newstime';
  4011. $newsjs=$ttpath.'goodnews.js';
  4012. $yhvar='bqgood';
  4013. }
  4014. elseif($enews==28)//标题分类评论排行
  4015. {
  4016. $query=' where '.$where;
  4017. $order='plnum';
  4018. $newsjs=$ttpath.'hotplnews.js';
  4019. $yhvar='bqpl';
  4020. }
  4021. elseif($enews==29)//标题分类头条
  4022. {
  4023. $query=' where '.$where.' and firsttitle>0';
  4024. $order='newstime';
  4025. $newsjs=$ttpath.'firstnews.js';
  4026. $yhvar='bqfirst';
  4027. }
  4028. $ret_r=ReturnReplaceListF($tempr[modid]);//字段
  4029. //优化
  4030. $yhadd='';
  4031. if(!empty($eyh_r[$yhid]['dojs']))
  4032. {
  4033. $yhadd=ReturnYhSql($yhid,$yhvar);
  4034. if(!empty($yhadd))
  4035. {
  4036. $query.=$qand.$yhadd;
  4037. $qand=' and ';
  4038. }
  4039. }
  4040. $query='select '.ReturnSqlListF($mid).' from '.$dbtbpre.'ecms_'.$tbname.$query.' order by '.ReturnSetTopSql('js').$order.' desc limit '.$line;
  4041. $sql=$empire->query($query);
  4042. //取得js模板
  4043. $tempr[temptext]=str_replace('[!--news.url--]',$public_r[newsurl],$tempr[temptext]);
  4044. $temp_r=explode("[!--empirenews.listtemp--]",$tempr[temptext]);
  4045. $no=1;
  4046. while($r=$empire->fetch($sql))
  4047. {
  4048. $r[oldtitle]=$r[title];
  4049. //替换列表变量
  4050. $repvar=ReplaceListVars($no,$temp_r[1],$tempr[subnews],$tempr[subtitle],$tempr[showdate],$url,0,$r,$ret_r);
  4051. $allnew.=$repvar;
  4052. $no++;
  4053. }
  4054. $allnew="document.write(\"".addslashes(stripSlashes(str_replace("\r\n","",$temp_r[0].$allnew.$temp_r[2])))."\");";
  4055. WriteFiletext_n($newsjs,$allnew);
  4056. }
  4057. //生成自定义js
  4058. function ReUserjs($jsr,$addpath){
  4059. global $empire,$public_r;
  4060. $jsfilepath=eReturnTrueEcmsPath().'e/data/'.$jsr['jsfilename'];//maddpath
  4061. DoFileMkDir($jsfilepath);//建目录
  4062. eAutodo_AddDo('ReUserjs',$jsr['jsid'],0,0,0,0);//moreportdo
  4063. //取得js模板
  4064. $jstemptext=GetTheJstemp($jsr[jstempid]);
  4065. $ret_r=ReturnReplaceListF($jstemptext[modid]);//字段
  4066. $jstemptext[temptext]=str_replace('[!--news.url--]',$public_r[newsurl],$jstemptext[temptext]);
  4067. $temp_r=explode("[!--empirenews.listtemp--]",$jstemptext[temptext]);
  4068. $query=$jsr[jssql];
  4069. $query=RepSqlTbpre($query);
  4070. $sql=$empire->query($query);
  4071. $no=1;
  4072. while($r=$empire->fetch($sql))
  4073. {
  4074. $r[oldtitle]=$r[title];
  4075. //替换列表变量
  4076. $repvar=ReplaceListVars($no,$temp_r[1],$jstemptext[subnews],$jstemptext[subtitle],$jstemptext[showdate],$url,0,$r,$ret_r);
  4077. $allnew.=$repvar;
  4078. $no++;
  4079. }
  4080. $allnew="document.write(\"".addslashes(stripSlashes(str_replace("\r\n","",$temp_r[0].$allnew.$temp_r[2])))."\");";
  4081. WriteFiletext_n($jsfilepath,$allnew);
  4082. }
  4083. //刷新信息列表
  4084. function ReListHtml($classid,$enews=0){
  4085. global $empire,$class_r,$dbtbpre;
  4086. $classid=(int)$classid;
  4087. if(!$classid)
  4088. {
  4089. printerror("NotChangeReClassid","history.go(-1)");
  4090. }
  4091. $r=$empire->fetch1("select classtempid,islist from {$dbtbpre}enewsclass where classid='$classid'");
  4092. if($class_r[$classid][islast])//终极栏目
  4093. {
  4094. ListHtml($classid,$ret_r,0);
  4095. }
  4096. else
  4097. {
  4098. if($r[islist]==1)
  4099. {
  4100. ListHtml($classid,$ret_r,3);
  4101. }
  4102. elseif($r[islist]==3)
  4103. {
  4104. ReClassBdInfo($classid);
  4105. }
  4106. else
  4107. {
  4108. $classtemp=$r[islist]==2?GetClassText($classid):GetClassTemp($r['classtempid']);
  4109. NewsBq($classid,$classtemp,0,0);
  4110. }
  4111. }
  4112. if($enews==1)//内部刷新
  4113. {return "";}
  4114. insert_dolog("");//操作日志
  4115. printerror("ReClassidSuccess","history.go(-1)");
  4116. }
  4117. //取得自定义页面模板
  4118. function GetPageTemp($tempid){
  4119. global $empire;
  4120. $r=$empire->fetch1("select temptext from ".GetTemptb("enewspagetemp")." where tempid='$tempid'");
  4121. return $r['temptext'];
  4122. }
  4123. //替换自定义页面标签
  4124. function RepUserpageVar($pagetext,$title,$pagetitle,$pagekeywords,$pagedescription,$pagestr,$id){
  4125. $pagestr=str_replace("[!--pagetext--]",$pagetext,$pagestr);
  4126. $pagestr=str_replace("[!--pagetitle--]",$pagetitle,$pagestr);
  4127. $pagestr=str_replace("[!--pagekeywords--]",$pagekeywords,$pagestr);
  4128. $pagestr=str_replace("[!--pagedescription--]",$pagedescription,$pagestr);
  4129. $pagestr=str_replace("[!--pageid--]",$id,$pagestr);
  4130. $pagestr=str_replace("[!--pagename--]",$title,$pagestr);
  4131. return $pagestr;
  4132. }
  4133. //生成自定义页面
  4134. function ReUserpage($id,$pagetext,$path,$title="",$pagetitle,$pagekeywords,$pagedescription,$tempid=0){
  4135. global $public_r;
  4136. if(empty($path))
  4137. {
  4138. return "";
  4139. }
  4140. $path=eReturnTrueEcmsPath().'e/data/'.$path;
  4141. DoFileMkDir($path);//建目录
  4142. eAutodo_AddDo('ReUserpage',$id,0,0,0,0);//moreportdo
  4143. if(empty($pagetitle))
  4144. {
  4145. $pagetitle=$title;
  4146. }
  4147. //模板式
  4148. if($tempid)
  4149. {
  4150. $pagestr=GetPageTemp($tempid);
  4151. }
  4152. else
  4153. {
  4154. $pagestr=$pagetext;
  4155. }
  4156. $pagestr=InfoNewsBq("page".$id,$pagestr);
  4157. $pagestr=RepUserpageVar($pagetext,$title,$pagetitle,$pagekeywords,$pagedescription,$pagestr,$id);
  4158. $pagestr=str_replace("[!--news.url--]",$public_r['newsurl'],$pagestr);
  4159. WriteFiletext($path,$pagestr);
  4160. }
  4161. //生成自定义信息列表
  4162. function ReUserlist($listr,$addpath){
  4163. $listr['addpath']=$addpath;
  4164. DoFileMkDir(eReturnTrueEcmsPath().'e/data/'.$listr['filepath']);//建目录maddpath
  4165. eAutodo_AddDo('ReUserlist',$listr['listid'],0,0,0,0);//moreportdo
  4166. ListHtml($listr['listid'],$field,4,$listr);
  4167. }
  4168. //生成搜索文件
  4169. function GetSearch($mid=0){
  4170. global $empire,$public_r,$fun_r,$dbtbpre;
  4171. //取得模板
  4172. $tr=$empire->fetch1("select searchtemp,searchjstemp,searchjstemp1 from ".GetTemptb("enewspubtemp")." limit 1");
  4173. //返回栏目搜索
  4174. $fcfile=eReturnTrueEcmsPath()."e/data/fc/ListEnews.php";
  4175. $fcjsfile=eReturnTrueEcmsPath()."e/data/fc/cmsclass.js";
  4176. if(file_exists($fcjsfile)&&file_exists($fcfile))
  4177. {
  4178. $options=GetFcfiletext($fcjsfile);
  4179. }
  4180. else
  4181. {
  4182. $options=ShowClass_AddClass("","n",0,"|-",0,1);
  4183. }
  4184. //$options="<script src=".$public_r[newsurl]."e/data/fc/searchclass.js></script>";
  4185. $functions="function search_check(obj){if(obj.keyboard.value.length==0){alert('".$fun_r['EmptyKey']."');return false;}return true;}";
  4186. //横向搜索
  4187. $searchjstemp=ReplaceStemp($tr[searchjstemp],$options,$url,0,'','','');
  4188. $text2=$functions."document.write(\"".$searchjstemp."\");";
  4189. //纵向搜索
  4190. $searchjstemp1=ReplaceStemp($tr[searchjstemp1],$options,$url,0,'','','');
  4191. $text3.=$functions."document.write(\"".$searchjstemp1."\");";
  4192. //高级搜索
  4193. $url="<a href='".ReturnSiteIndexUrl()."'>".$fun_r['index']."</a>&nbsp;>&nbsp;<a href='../search/'>".$fun_r['adsearch']."</a>&nbsp;>";//导航栏
  4194. //搜索模板替换
  4195. $dbsearchtemp=ReplaceStemp($tr[searchtemp],$options,$url,0,$fun_r['adsearch'],$fun_r['adsearch'],$fun_r['adsearch'],1);
  4196. $text4=$dbsearchtemp;
  4197. //增加信息栏目
  4198. if($mid)
  4199. {
  4200. $options1=ShowClass_AddClass("","n",0,"|-",$mid,2);
  4201. $addnews_class="document.write(\"".addslashes($options1)."\");";
  4202. $filename3=eReturnTrueEcmsPath()."d/js/js/addinfo".$mid.".js";
  4203. WriteFiletext_n($filename3,$addnews_class);
  4204. }
  4205. $filename=eReturnTrueEcmsPath()."d/js/js/search_news1.js";
  4206. WriteFiletext_n($filename,$text2);
  4207. $filename1=eReturnTrueEcmsPath()."d/js/js/search_news2.js";
  4208. WriteFiletext_n($filename1,$text3);
  4209. $filename2=eReturnTrueEcmsPath()."search/index".$public_r[searchtype];
  4210. WriteFiletext($filename2,$text4);
  4211. }
  4212. //替换搜索结果变量
  4213. function RepSearchRtemp($temptext,$url){
  4214. global $public_r;
  4215. //热门文章
  4216. $temptext=str_replace("[!--hotnews--]","<script src=".$public_r[newsurl]."d/js/js/hotnews.js></script>",$temptext);
  4217. //点击排行
  4218. $temptext=str_replace("[!--newnews--]","<script src=".$public_r[newsurl]."d/js/js/newnews.js></script>",$temptext);
  4219. //推荐
  4220. $temptext=str_replace("[!--goodnews--]","<script src=".$public_r[newsurl]."d/js/js/goodnews.js></script>",$temptext);
  4221. //评论排行
  4222. $temptext=str_replace("[!--hotplnews--]","<script src=".$public_r[newsurl]."d/js/js/hotplnews.js></script>",$temptext);
  4223. //分页
  4224. $temptext=str_replace("[!--listpage--]","<?=\$listpage?>",$temptext);
  4225. //关键字
  4226. $temptext=str_replace("[!--keyboard--]","<?=\$keyboard?>",$temptext);
  4227. //总记录数
  4228. $temptext=str_replace("[!--num--]","<?=\$num?>",$temptext);
  4229. //导行条
  4230. $temptext=str_replace("[!--url--]",$url,$temptext);
  4231. $temptext=str_replace("[!--newsurl--]",$public_r[newsurl],$temptext);
  4232. return $temptext;
  4233. }
  4234. //生成评论文件
  4235. function GetPlTempPage($pltempid=0){
  4236. global $empire,$public_r,$fun_r,$dbtbpre;
  4237. $pl_t_filename=eReturnTrueEcmsPath().'e/data/template/pltemp.txt';
  4238. $yplfiletemp=ReadFiletext($pl_t_filename);
  4239. $yplfiletemp=str_replace("\\","\\\\",$yplfiletemp);
  4240. //导航栏
  4241. $url="<a href='".ReturnSiteIndexUrl()."'>".$fun_r['index']."</a>&nbsp;>&nbsp;[!--title--]&nbsp;>&nbsp;".$fun_r['newspl']."&nbsp;>";
  4242. $pagetitle="<?=\$pagetitle?> ".$fun_r['newspl'];
  4243. $pagekey=$pagetitle;
  4244. $pagedes=$pagetitle;
  4245. $pr=$empire->fetch1("select plf from {$dbtbpre}enewspl_set limit 1");
  4246. //回车字段
  4247. $tobrf=',';
  4248. $plfsql=$empire->query("select f from {$dbtbpre}enewsplf where ftype='VARCHAR' or ftype='TEXT' or ftype='MEDIUMTEXT' or ftype='LONGTEXT'");
  4249. while($plfr=$empire->fetch($plfsql))
  4250. {
  4251. $tobrf.=$plfr[f].',';
  4252. }
  4253. $pr['pltobrf']=$tobrf;
  4254. //取得评论页面模板
  4255. $where=$pltempid?" where tempid='$pltempid'":'';
  4256. $ptsql=$empire->query("select tempid,temptext from ".GetTemptb("enewspltemp").$where);
  4257. while($ptr=$empire->fetch($ptsql))
  4258. {
  4259. $plfiletemp=$yplfiletemp;
  4260. $pl_filename=eReturnTrueEcmsPath().'e/data/filecache/template/pl'.$ptr[tempid].'.php';
  4261. $pltemp=$ptr['temptext'];
  4262. //头部变量
  4263. $pltemp=ReplaceSvars($pltemp,$url,0,$pagetitle,$pagekey,$pagedes,$add,1);
  4264. $pltemp=RepSearchRtemp($pltemp,$url);
  4265. //变量
  4266. $pltemp=str_replace("[!--title--]","<?=\$title?>",$pltemp);
  4267. $pltemp=str_replace("[!--titleurl--]","<?=\$titleurl?>",$pltemp);
  4268. $pltemp=str_replace("[!--id--]","<?=\$id?>",$pltemp);
  4269. $pltemp=str_replace("[!--classid--]","<?=\$classid?>",$pltemp);
  4270. $pltemp=str_replace("[!--plnum--]","<?=\$num?>",$pltemp);
  4271. //评分
  4272. $pltemp=str_replace("[!--pinfopfen--]","<?=\$pinfopfen?>",$pltemp);
  4273. $pltemp=str_replace("[!--infopfennum--]","<?=\$infopfennum?>",$pltemp);
  4274. //登录
  4275. $pltemp=str_replace("[!--key.url--]",$public_r[newsurl]."e/ShowKey/?v=pl",$pltemp);
  4276. $pltemp=str_replace("[!--lusername--]","<?=\$lusername?>",$pltemp);
  4277. $pltemp=str_replace("[!--lpassword--]","<?=\$lpassword?>",$pltemp);
  4278. //列表变量
  4279. $listtemp_r=explode("[!--empirenews.listtemp--]",$pltemp);
  4280. $plfiletemp=str_replace("<!--empire.listtemp.top-->",$listtemp_r[0],$plfiletemp);
  4281. $plfiletemp=str_replace("<!--empire.listtemp.footer-->",$listtemp_r[2],$plfiletemp);
  4282. //列表中间
  4283. $listtemp_center=str_replace("[!--plid--]","<?=\$r[plid]?>",$listtemp_r[1]);
  4284. $listtemp_center=str_replace("[!--pltext--]","<?=\$saytext?>",$listtemp_center);
  4285. $listtemp_center=str_replace("[!--pltime--]","<?=\$saytime?>",$listtemp_center);
  4286. $listtemp_center=str_replace("[!--plip--]","<?=\$sayip?>",$listtemp_center);
  4287. $listtemp_center=str_replace("[!--username--]","<?=\$plusername?>",$listtemp_center);
  4288. $listtemp_center=str_replace("[!--userid--]","<?=\$r[userid]?>",$listtemp_center);
  4289. $listtemp_center=str_replace("[!--includelink--]","<?=\$includelink?>",$listtemp_center);
  4290. $listtemp_center=str_replace("[!--zcnum--]","<?=\$r[zcnum]?>",$listtemp_center);
  4291. $listtemp_center=str_replace("[!--fdnum--]","<?=\$r[fdnum]?>",$listtemp_center);
  4292. $listtemp_center=ReplacePlListVars($listtemp_center,$r,$pr,0);
  4293. $plfiletemp=str_replace("<!--empire.listtemp.center-->",$listtemp_center,$plfiletemp);
  4294. WriteFiletext($pl_filename,$plfiletemp);
  4295. }
  4296. }
  4297. //替换评论字段
  4298. function ReplacePlListVars($temp,$r,$pr,$ecms=0){
  4299. $fr=explode(',',$pr['plf']);
  4300. $count=count($fr)-1;
  4301. for($i=1;$i<$count;$i++)
  4302. {
  4303. $f=$fr[$i];
  4304. if($ecms==1)
  4305. {
  4306. if(strstr($pr['pltobrf'],','.$f.','))
  4307. {
  4308. $temp=str_replace('[!--'.$f.'--]',"<?=addslashes(stripSlashes(str_replace(\"\\r\\n\",\"\",\$r[".$f."])))?>",$temp);
  4309. }
  4310. else
  4311. {
  4312. $temp=str_replace('[!--'.$f.'--]',"<?=\$r[".$f."]?>",$temp);
  4313. }
  4314. }
  4315. else
  4316. {
  4317. if(strstr($pr['pltobrf'],','.$f.','))
  4318. {
  4319. $temp=str_replace('[!--'.$f.'--]',"<?=stripSlashes(\$r[".$f."])?>",$temp);
  4320. }
  4321. else
  4322. {
  4323. $temp=str_replace('[!--'.$f.'--]',"<?=\$r[".$f."]?>",$temp);
  4324. }
  4325. }
  4326. }
  4327. return $temp;
  4328. }
  4329. //生成评论JS文件
  4330. function GetPlJsPage(){
  4331. global $empire,$public_r,$fun_r,$dbtbpre;
  4332. $pl_t_filename=eReturnTrueEcmsPath()."e/data/template/pljstemp.txt";
  4333. $pl_filename=eReturnTrueEcmsPath()."e/pl/more/index.php";
  4334. $pltemp=ReadFiletext($pl_t_filename);
  4335. $pr=$empire->fetch1("select plf from {$dbtbpre}enewspl_set limit 1");
  4336. //回车字段
  4337. $tobrf=',';
  4338. $plfsql=$empire->query("select f from {$dbtbpre}enewsplf where ftype='VARCHAR' or ftype='TEXT' or ftype='MEDIUMTEXT' or ftype='LONGTEXT'");
  4339. while($plfr=$empire->fetch($plfsql))
  4340. {
  4341. $tobrf.=$plfr[f].',';
  4342. }
  4343. $pr['pltobrf']=$tobrf;
  4344. //取得评论JS模板
  4345. $pl_r=$empire->fetch1("select pljstemp from ".GetTemptb("enewspubtemp")." limit 1");
  4346. $pljstemp=str_replace("\r\n","",$pl_r['pljstemp']);
  4347. $pljstemp=addslashes(stripSlashes($pljstemp));
  4348. $pljstemp=str_replace("[!--id--]","<?=\$id?>",$pljstemp);
  4349. $pljstemp=str_replace("[!--classid--]","<?=\$classid?>",$pljstemp);
  4350. $pljstemp=str_replace("[!--news.url--]",$public_r[newsurl],$pljstemp);
  4351. $listtemp_r=explode("[!--empirenews.listtemp--]",$pljstemp);
  4352. $pltemp=str_replace("<!--empire.listtemp.top-->",$listtemp_r[0],$pltemp);
  4353. $pltemp=str_replace("<!--empire.listtemp.footer-->",$listtemp_r[2],$pltemp);
  4354. //列表中间
  4355. $listtemp_center=str_replace("[!--plid--]","<?=\$r[plid]?>",$listtemp_r[1]);
  4356. $listtemp_center=str_replace("[!--pltext--]","<?=\$saytext?>",$listtemp_center);
  4357. $listtemp_center=str_replace("[!--pltime--]","<?=\$saytime?>",$listtemp_center);
  4358. $listtemp_center=str_replace("[!--plip--]","<?=\$sayip?>",$listtemp_center);
  4359. $listtemp_center=str_replace("[!--username--]","<?=\$plusername?>",$listtemp_center);
  4360. $listtemp_center=str_replace("[!--userid--]","<?=\$r[userid]?>",$listtemp_center);
  4361. $listtemp_center=str_replace("[!--zcnum--]","<?=\$r[zcnum]?>",$listtemp_center);
  4362. $listtemp_center=str_replace("[!--fdnum--]","<?=\$r[fdnum]?>",$listtemp_center);
  4363. $listtemp_center=ReplacePlListVars($listtemp_center,$r,$pr,1);
  4364. $pltemp=str_replace("<!--empire.listtemp.center-->",$listtemp_center,$pltemp);
  4365. WriteFiletext_n($pl_filename,$pltemp);
  4366. }
  4367. //生成留言板文件
  4368. function ReGbooktemp(){
  4369. global $empire,$public_r,$fun_r,$dbtbpre;
  4370. $tfile=eReturnTrueEcmsPath()."e/data/template/gbooktemp.txt";
  4371. $file=eReturnTrueEcmsPath()."e/tool/gbook/index.php";
  4372. $gbtemp=ReadFiletext($tfile);
  4373. //取得留言页面模板
  4374. $pr=$empire->fetch1("select gbooktemp from ".GetTemptb("enewspubtemp")." limit 1");
  4375. $url="<?=\$url?>";
  4376. $pagetitle="<?=\$bname?>";
  4377. $pr['gbooktemp']=ReplaceSvars($pr['gbooktemp'],$url,0,$pagetitle,$pagetitle,$pagetitle,$add,1);
  4378. $pr['gbooktemp']=RepSearchRtemp($pr['gbooktemp'],$url);
  4379. $pr['gbooktemp']=str_replace("[!--bname--]","<?=\$bname?>",$pr['gbooktemp']);
  4380. $pr['gbooktemp']=str_replace("[!--bid--]","<?=\$bid?>",$pr['gbooktemp']);
  4381. $listtemp_r=explode("[!--empirenews.listtemp--]",$pr['gbooktemp']);
  4382. $gbtemp=str_replace("<!--empire.listtemp.top-->",$listtemp_r[0],$gbtemp);
  4383. $gbtemp=str_replace("<!--empire.listtemp.footer-->",$listtemp_r[2],$gbtemp);
  4384. //---列表中间
  4385. //处理回复
  4386. $restart="
  4387. <?
  4388. if(\$r[retext])
  4389. {
  4390. ?>
  4391. ";
  4392. $endstart="
  4393. <?
  4394. }
  4395. ?>";
  4396. $listtemp_center=str_replace("[!--start.regbook--]",$restart,$listtemp_r[1]);
  4397. $listtemp_center=str_replace("[!--end.regbook--]",$endstart,$listtemp_center);
  4398. $listtemp_center=str_replace("[!--lyid--]","<?=\$r[lyid]?>",$listtemp_center);
  4399. $listtemp_center=str_replace("[!--name--]","<?=stripSlashes(\$r[name])?>",$listtemp_center);
  4400. $listtemp_center=str_replace("[!--email--]","<?=stripSlashes(\$r[email])?>",$listtemp_center);
  4401. $listtemp_center=str_replace("[!--mycall--]","<?=stripSlashes(\$r[mycall])?>",$listtemp_center);
  4402. $listtemp_center=str_replace("[!--lytime--]","<?=\$r[lytime]?>",$listtemp_center);
  4403. $listtemp_center=str_replace("[!--lytext--]","<?=\$r[lytext]?>",$listtemp_center);
  4404. $listtemp_center=str_replace("[!--retext--]","<?=\$r[retext]?>",$listtemp_center);
  4405. $gbtemp=str_replace("<!--empire.listtemp.center-->",$listtemp_center,$gbtemp);
  4406. WriteFiletext($file,$gbtemp);
  4407. }
  4408. //更新控制面板模板
  4409. function ReCptemp(){
  4410. global $empire,$public_r,$dbtbpre,$fun_r;
  4411. $pr=$empire->fetch1("select cptemp from ".GetTemptb("enewspubtemp")." limit 1");
  4412. $url="<?=\$url?>";
  4413. $pagetitle="<?=defined('empirecms')?\$public_diyr[pagetitle]:'".$fun_r['membercp']."'?>";
  4414. $temptext=ReplaceSvars($pr['cptemp'],$url,0,$pagetitle,$pagetitle,$pagetitle,$add,1);
  4415. //生成头尾文件
  4416. $r=explode("[!--empirenews.template--]",$temptext);
  4417. $file1=eReturnTrueEcmsPath()."e/data/template/cp_1.php";
  4418. WriteFiletext($file1,AddCheckViewTempCode().$r[0]);
  4419. $file2=eReturnTrueEcmsPath()."e/data/template/cp_2.php";
  4420. WriteFiletext($file2,AddCheckViewTempCode().$r[1]);
  4421. }
  4422. //更新登陆状态模板
  4423. function ReLoginIframe(){
  4424. global $empire,$public_r,$dbtbpre;
  4425. $tfile=eReturnTrueEcmsPath()."e/data/template/loginiframetemp.txt";
  4426. $loginiframetemp=ReadFiletext($tfile);
  4427. $pr=$empire->fetch1("select loginiframe,loginjstemp from ".GetTemptb("enewspubtemp")." limit 1");
  4428. //框架登陆状态调用
  4429. $temptext=str_replace("[!--news.url--]",$public_r['newsurl'],$pr['loginiframe']);
  4430. $temptext=str_replace("[!--userid--]","<?=\$myuserid?>",$temptext);
  4431. $temptext=str_replace("[!--username--]","<?=\$myusername?>",$temptext);
  4432. $temptext=str_replace("[!--groupname--]","<?=\$groupname?>",$temptext);
  4433. $temptext=str_replace("[!--money--]","<?=\$money?>",$temptext);
  4434. $temptext=str_replace("[!--userdate--]","<?=\$userdate?>",$temptext);
  4435. $temptext=str_replace("[!--havemsg--]","<?=\$havemsg?>",$temptext);
  4436. $temptext=str_replace("[!--userfen--]","<?=\$userfen?>",$temptext);
  4437. $r=explode("[!--empirenews.template--]",$temptext);
  4438. $text=str_replace("<!--login-->",$r[0],$loginiframetemp);
  4439. $text=str_replace("<!--loginin-->",$r[1],$text);
  4440. $file=eReturnTrueEcmsPath()."e/member/iframe/index.php";
  4441. WriteFiletext($file,$text);
  4442. //JS登陆状态调用
  4443. $temptext=str_replace("[!--news.url--]",$public_r['newsurl'],$pr['loginjstemp']);
  4444. $temptext=str_replace("[!--userid--]","<?=\$myuserid?>",$temptext);
  4445. $temptext=str_replace("[!--username--]","<?=\$myusername?>",$temptext);
  4446. $temptext=str_replace("[!--groupname--]","<?=\$groupname?>",$temptext);
  4447. $temptext=str_replace("[!--money--]","<?=\$money?>",$temptext);
  4448. $temptext=str_replace("[!--userdate--]","<?=\$userdate?>",$temptext);
  4449. $temptext=str_replace("[!--havemsg--]","<?=\$havemsg?>",$temptext);
  4450. $temptext=str_replace("[!--userfen--]","<?=\$userfen?>",$temptext);
  4451. $r=explode("[!--empirenews.template--]",$temptext);
  4452. $login="document.write(\"".addslashes(stripSlashes(str_replace("\r\n","",$r[0])))."\");";
  4453. $loginin="document.write(\"".addslashes(stripSlashes(str_replace("\r\n","",$r[1])))."\");";
  4454. $text=str_replace("<!--login-->",$login,$loginiframetemp);
  4455. $text=str_replace("<!--loginin-->",$loginin,$text);
  4456. $file=eReturnTrueEcmsPath()."e/member/login/loginjs.php";
  4457. WriteFiletext_n($file,$text);
  4458. }
  4459. //返回投票模板
  4460. function ReturnVoteTemp($tempid,$enews=0){
  4461. global $empire;
  4462. $r=$empire->fetch1("select temptext from ".GetTemptb("enewsvotetemp")." where tempid='$tempid'");
  4463. if($enews)
  4464. {
  4465. $r[temptext]=str_replace("\r\n","",$r[temptext]);
  4466. }
  4467. return $r[temptext];
  4468. }
  4469. //替换投票模板总体变量
  4470. function RepVoteTempAllvar($temptext,$r){
  4471. global $public_r;
  4472. $action=$public_r['newsurl']."e/enews/index.php";
  4473. $temptext=str_replace("[!--vote.action--]",$action,$temptext);
  4474. $temptext=str_replace("[!--title--]",$r[title],$temptext);
  4475. $viewurl=$public_r[newsurl]."e/tool/vote/?voteid=".$r[voteid];
  4476. $temptext=str_replace("[!--vote.view--]",$viewurl,$temptext);
  4477. $temptext=str_replace("[!--width--]",$r[width],$temptext);
  4478. $temptext=str_replace("[!--height--]",$r[height],$temptext);
  4479. $temptext=str_replace("[!--voteid--]",$r[voteid],$temptext);
  4480. $temptext=str_replace("[!--id--]",$r[id],$temptext);
  4481. $temptext=str_replace("[!--classid--]",$r[classid],$temptext);
  4482. $temptext=str_replace("[!--news.url--]",$public_r[newsurl],$temptext);
  4483. return $temptext;
  4484. }
  4485. //替换投票模板列表
  4486. function RepVoteTempListvar($temptext,$votebox,$votename){
  4487. $temptext=str_replace("[!--vote.box--]",$votebox,$temptext);
  4488. $temptext=str_replace("[!--vote.name--]",$votename,$temptext);
  4489. return $temptext;
  4490. }
  4491. //生成打印页面
  4492. function GetPrintPage($printtempid=0){
  4493. global $empire,$dbtbpre,$fun_r,$public_r;
  4494. $file=eReturnTrueEcmsPath().'e/data/template/printtemp.txt';
  4495. $string=ReadFiletext($file);
  4496. $url="<?=\$url?>";
  4497. $pagetitle="<?=ehtmlspecialchars(\$r[title])?> ".$fun_r['PrintPage'];
  4498. //取得评论页面模板
  4499. $where=$printtempid?" where tempid='$printtempid'":'';
  4500. $ptsql=$empire->query("select tempid,temptext,showdate,modid from ".GetTemptb("enewsprinttemp").$where);
  4501. while($ptr=$empire->fetch($ptsql))
  4502. {
  4503. $ptr[temptext]=ReplaceSvars($ptr[temptext],$url,0,$pagetitle,$pagetitle,$pagetitle,$add,1);
  4504. $printtemp=RepPrintTempV($ptr);
  4505. $printtemp=str_replace("<!--empire.print-->",$printtemp,$string);
  4506. $truefile=eReturnTrueEcmsPath().'e/data/filecache/template/print'.$ptr[tempid].'.php';
  4507. WriteFiletext($truefile,$printtemp);
  4508. }
  4509. }
  4510. //替换打印模板变量
  4511. function RepPrintTempV($tr){
  4512. global $empire,$dbtbpre,$fun_r,$public_r,$emod_r;
  4513. $temptext=$tr['temptext'];
  4514. $mid=$tr['modid'];
  4515. //字段
  4516. $tempf=$emod_r[$mid]['tempf'];
  4517. $fr=explode(',',$tempf);
  4518. $fcount=count($fr)-1;
  4519. for($i=1;$i<$fcount;$i++)
  4520. {
  4521. $f=$fr[$i];
  4522. $value="stripSlashes(\$r[".$f."])";
  4523. if($f=='newstime')//时间
  4524. {
  4525. $value="date('".$tr[showdate]."',\$r[".$f."])";
  4526. }
  4527. elseif($f=='title')//标题
  4528. {
  4529. }
  4530. else//正常字段
  4531. {
  4532. if(!strstr($emod_r[$mid]['editorf'],','.$f.','))
  4533. {
  4534. if(strstr($emod_r[$mid]['tobrf'],','.$f.','))//加br
  4535. {
  4536. $value='nl2br('.$value.')';
  4537. }
  4538. if(!strstr($emod_r[$mid]['dohtmlf'],','.$f.','))//去除html
  4539. {
  4540. $value='RepFieldtextNbsp(ehtmlspecialchars('.$value.'))';
  4541. }
  4542. }
  4543. }
  4544. $temptext=str_replace('[!--'.$f.'--]','<?='.$value.'?>',$temptext);
  4545. }
  4546. $temptext=str_replace("[!--id--]","<?=\$r[id]?>",$temptext);
  4547. $temptext=str_replace("[!--classid--]","<?=\$r[classid]?>",$temptext);
  4548. $temptext=str_replace("[!--keyboard--]","<?=\$r[keyboard]?>",$temptext);
  4549. $temptext=str_replace("[!--class.name--]","<?=\$class_r[\$classid][classname]?>",$temptext);
  4550. $temptext=str_replace("[!--bclass.id--]","<?=\$bclassid?>",$temptext);
  4551. $temptext=str_replace("[!--bclass.name--]","<?=\$class_r[\$bclassid][classname]?>",$temptext);
  4552. $temptext=str_replace('[!--ttid--]',"<?=\$r[ttid]?>",$temptext);
  4553. $temptext=str_replace('[!--tt.name--]',"<?=\$class_tr[\$r[ttid]][tname]?>",$temptext);
  4554. $temptext=str_replace('[!--tt.url--]',"<?=sys_ReturnBqInfoTypeUrl(\$r[ttid])?>",$temptext);
  4555. $temptext=str_replace("[!--userfen--]","<?=\$r[userfen]?>",$temptext);
  4556. $temptext=str_replace("[!--onclick--]","<?=\$r[onclick]?>",$temptext);
  4557. $temptext=str_replace("[!--totaldown--]","<?=\$r[totaldown]?>",$temptext);
  4558. $temptext=str_replace("[!--plnum--]","<?=\$r[plnum]?>",$temptext);
  4559. $temptext=str_replace("[!--userid--]","<?=\$r[userid]?>",$temptext);
  4560. $temptext=str_replace("[!--username--]","<?=\$r[username]?>",$temptext);
  4561. $temptext=str_replace("[!--titlelink--]","<?=\$titleurl?>",$temptext);
  4562. $temptext=str_replace("[!--titleurl--]","<?=\$titleurl?>",$temptext);
  4563. $temptext=str_replace("[!--url--]","<?=\$url?>",$temptext);
  4564. return $temptext;
  4565. }
  4566. //更新下载页面模板
  4567. function GetDownloadPage(){
  4568. global $empire,$public_r,$dbtbpre,$fun_r;
  4569. $pr=$empire->fetch1("select downpagetemp from ".GetTemptb("enewspubtemp")." limit 1");
  4570. $temptext=$pr['downpagetemp'];
  4571. $url="<a href='".ReturnSiteIndexUrl()."'>".$fun_r['index']."</a>&nbsp;>&nbsp;<a href='<?=\$titleurl?>'><?=\$r[title]?></a>&nbsp;>&nbsp;<?=\$thisdownname?>";
  4572. $pagetitle="<?=ehtmlspecialchars(\$r[title])?> - <?=ehtmlspecialchars(\$thisdownname)?>";
  4573. $temptext=ReplaceSvars($temptext,$url,"<?=\$r[classid]?>",$pagetitle,$pagetitle,$pagetitle,$add,1);
  4574. //分类
  4575. $temptext=str_replace("[!--classid--]","<?=\$r[classid]?>",$temptext);
  4576. $temptext=str_replace("[!--class.name--]","<?=\$classname?>",$temptext);
  4577. $temptext=str_replace("[!--bclass.id--]","<?=\$bclassid?>",$temptext);
  4578. $temptext=str_replace("[!--bclass.name--]","<?=\$bclassname?>",$temptext);
  4579. //下载地址
  4580. $temptext=str_replace("[!--down.url--]","<?=\$url?>",$temptext);
  4581. $temptext=str_replace("[!--true.down.url--]","<?=\$trueurl?>",$temptext);
  4582. $temptext=str_replace("[!--down.name--]","<?=\$thisdownname?>",$temptext);
  4583. //下载权限
  4584. $temptext=str_replace("[!--fen--]","<?=\$fen?>",$temptext);
  4585. $temptext=str_replace("[!--group--]","<?=\$downuser?>",$temptext);
  4586. //信息
  4587. $temptext=str_replace("[!--id--]","<?=\$r[id]?>",$temptext);
  4588. $temptext=str_replace("[!--titleurl--]","<?=\$titleurl?>",$temptext);
  4589. $temptext=str_replace("[!--title--]","<?=\$r[title]?>",$temptext);
  4590. $temptext=str_replace("[!--newstime--]","<?=\$newstime?>",$temptext);
  4591. $temptext=str_replace("[!--titlepic--]","<?=\$titlepic?>",$temptext);
  4592. $temptext=str_replace("[!--keyboard--]","<?=\$r[keyboard]?>",$temptext);
  4593. $temptext=str_replace("[!--userid--]","<?=\$r[userid]?>",$temptext);
  4594. $temptext=str_replace("[!--username--]","<?=\$r[username]?>",$temptext);
  4595. $temptext=str_replace("[!--pathid--]","<?=\$pathid?>",$temptext);
  4596. $temptext=str_replace("[!--totaldown--]","<?=\$r[totaldown]?>",$temptext);
  4597. $temptext=str_replace("[!--onclick--]","<?=\$r[onclick]?>",$temptext);
  4598. $file=eReturnTrueEcmsPath()."e/data/template/downpagetemp.php";
  4599. WriteFiletext($file,AddCheckViewTempCode().$temptext);
  4600. }
  4601. //生成全站搜索文件
  4602. function ReSchAlltemp(){
  4603. global $empire,$public_r,$fun_r,$dbtbpre;
  4604. $tfile=eReturnTrueEcmsPath()."e/data/template/schalltemp.txt";
  4605. $file=eReturnTrueEcmsPath()."e/sch/index.php";
  4606. $temp=ReadFiletext($tfile);
  4607. //取得页面模板
  4608. $pr=$empire->fetch1("select schalltemp,schallsubnum,schalldate from ".GetTemptb("enewspubtemp")." limit 1");
  4609. $url="<?=\$url?>";
  4610. $pagetitle=$fun_r['SearchAllNav'];
  4611. $pr['schalltemp']=ReplaceSvars($pr['schalltemp'],$url,0,$pagetitle,$pagetitle,$pagetitle,$add,1);
  4612. $temp=str_replace("<!--empire.listtemp.subnum-->",$pr['schallsubnum'],$temp);
  4613. $temp=str_replace("<!--empire.listtemp.formatdate-->",$pr['schalldate'],$temp);
  4614. $pr['schalltemp']=str_replace("[!--keyboard--]","<?=\$keyboard?>",$pr['schalltemp']);
  4615. $pr['schalltemp']=str_replace("[!--num--]","<?=\$num?>",$pr['schalltemp']);
  4616. $pr['schalltemp']=str_replace("[!--listpage--]","<?=\$listpage?>",$pr['schalltemp']);
  4617. $listtemp_r=explode("[!--empirenews.listtemp--]",$pr['schalltemp']);
  4618. $temp=str_replace("<!--empire.listtemp.top-->",$listtemp_r[0],$temp);
  4619. $temp=str_replace("<!--empire.listtemp.footer-->",$listtemp_r[2],$temp);
  4620. //---列表中间
  4621. $listtemp_center=str_replace("[!--no.num--]","<?=\$no?>",$listtemp_r[1]);
  4622. $listtemp_center=str_replace("[!--titleurl--]","<?=\$titleurl?>",$listtemp_center);
  4623. $listtemp_center=str_replace("[!--id--]","<?=\$r[id]?>",$listtemp_center);
  4624. $listtemp_center=str_replace("[!--classid--]","<?=\$r[classid]?>",$listtemp_center);
  4625. $listtemp_center=str_replace("[!--titlepic--]","<?=\$titlepic?>",$listtemp_center);
  4626. $listtemp_center=str_replace("[!--newstime--]","<?=\$newstime?>",$listtemp_center);
  4627. $listtemp_center=str_replace("[!--title--]","<?=\$title?>",$listtemp_center);
  4628. $listtemp_center=str_replace("[!--smalltext--]","<?=\$smalltext?>",$listtemp_center);
  4629. $temp=str_replace("<!--empire.listtemp.center-->",$listtemp_center,$temp);
  4630. WriteFiletext($file,$temp);
  4631. }
  4632. //-------------- 用户区 ----------------------
  4633. //返回操作权限
  4634. function ReturnLeftLevel($groupid){
  4635. global $empire,$dbtbpre;
  4636. if(empty($groupid))
  4637. {return "";}
  4638. $groupid=(int)$groupid;
  4639. $r=$empire->fetch1("select * from {$dbtbpre}enewsgroup where groupid='$groupid'");
  4640. return $r;
  4641. }
  4642. //password
  4643. function DoEmpireCMSAdminPassword($password,$salt,$salt2){
  4644. $pw=md5($salt2.'E!m^p-i(r#e.C:M?S'.md5(md5($password).$salt).'d)i.g^o-d'.$salt);
  4645. return $pw;
  4646. }
  4647. //返回操作权限
  4648. function CheckLevel($userid,$username,$classid,$enews){
  4649. global $empire,$dbtbpre;
  4650. $userid=(int)$userid;
  4651. $r=$empire->fetch1("select groupid,adminclass from {$dbtbpre}enewsuser where userid='$userid' limit 1");
  4652. //操作信息
  4653. if($enews=="news")
  4654. {
  4655. //操作所有栏目权限
  4656. $gr=$empire->fetch1("select doall,doselfinfo,doaddinfo,doeditinfo,dodelinfo,docheckinfo,dogoodinfo,dodocinfo,domoveinfo,domustcheck,docheckedit,docanhtml,doinfofile from {$dbtbpre}enewsgroup where groupid='$r[groupid]'");
  4657. if(empty($gr[doall]))
  4658. {
  4659. $e_r=explode("|".$classid."|",$r[adminclass]);
  4660. if(count($e_r)!=2)
  4661. {printerror("NotNewsLevel","history.go(-1)");}
  4662. }
  4663. $gr['add_adminclass']=$r['adminclass'];
  4664. return $gr;
  4665. }
  4666. else
  4667. {
  4668. //用户组
  4669. $gr=$empire->fetch1("select * from {$dbtbpre}enewsgroup where groupid='$r[groupid]'");
  4670. $enews="do".$enews;
  4671. if(empty($gr[$enews]))
  4672. {
  4673. printerror("NotLevel","history.go(-1)");
  4674. }
  4675. $gr['add_adminclass']=$r['adminclass'];
  4676. return $gr;
  4677. }
  4678. }
  4679. //验证设置权限
  4680. function CheckDoLevel($lur,$groupid,$userclass,$username,$ecms=0){
  4681. $ret=0;
  4682. if(strstr($groupid,','.$lur[groupid].','))
  4683. {
  4684. $ret=1;
  4685. }
  4686. elseif(strstr($userclass,','.$lur[classid].','))
  4687. {
  4688. $ret=1;
  4689. }
  4690. elseif(stristr($username,','.$lur[username].','))
  4691. {
  4692. $ret=1;
  4693. }
  4694. if($ecms==0&&$ret==0)
  4695. {
  4696. printerror('NotLevel','history.go(-1)');
  4697. }
  4698. return $ret;
  4699. }
  4700. //验证固定用户权限
  4701. function CheckAndUsernamesLevel($level,$id,$userid,$username,$groupid){
  4702. global $empire,$dbtbpre;
  4703. $id=(int)$id;
  4704. if(!$id)
  4705. {
  4706. printerror('ErrorUrl','history.go(-1)');
  4707. }
  4708. if($level=='dozt')//专题
  4709. {
  4710. $getquery="select ztid,usernames from {$dbtbpre}enewszt where ztid='$id'";
  4711. $id_field='ztid';
  4712. $users_field='usernames';
  4713. }
  4714. else
  4715. {
  4716. printerror('ErrorUrl','history.go(-1)');
  4717. }
  4718. $getr=$empire->fetch1($getquery);
  4719. if(!$getr[$id_field])
  4720. {
  4721. printerror('ErrorUrl','history.go(-1)');
  4722. }
  4723. $gr=$empire->fetch1("select groupid,".$level." from {$dbtbpre}enewsgroup where groupid='$groupid'");
  4724. if(!$gr['groupid'])
  4725. {
  4726. printerror('NotLevel','history.go(-1)');
  4727. }
  4728. if($gr[$level])
  4729. {
  4730. return 2;
  4731. }
  4732. if(!stristr(','.$getr[$users_field].',',','.$username.','))
  4733. {
  4734. printerror('NotLevel','history.go(-1)');
  4735. }
  4736. return 1;
  4737. }
  4738. //是否登陆
  4739. function is_login($uid=0,$uname='',$urnd=''){
  4740. global $empire,$public_r,$dbtbpre;
  4741. $userid=$uid?$uid:getcvar('loginuserid',1);
  4742. $username=$uname?$uname:getcvar('loginusername',1);
  4743. $rnd=$urnd?$urnd:getcvar('loginrnd',1);
  4744. $userid=(int)$userid;
  4745. $username=RepPostVar($username);
  4746. $rnd=RepPostVar($rnd);
  4747. if(!$userid||!$username||!$rnd)
  4748. {
  4749. printerror("NotLogin","index.php");
  4750. }
  4751. $groupid=(int)getcvar('loginlevel',1);
  4752. $adminstyle=(int)getcvar('loginadminstyleid',1);
  4753. if(!strstr($public_r['adminstyle'],','.$adminstyle.','))
  4754. {
  4755. $adminstyle=$public_r['defadminstyle']?$public_r['defadminstyle']:1;
  4756. }
  4757. $truelogintime=(int)getcvar('truelogintime',1);
  4758. $cdbdata=0;
  4759. //COOKIE验证
  4760. $cdbdata=getcvar('ecmsdodbdata',1)?1:0;
  4761. DoChECookieRnd($userid,$username,$rnd,'',$cdbdata,$groupid,$adminstyle,$truelogintime);
  4762. //db
  4763. $adminr=$empire->fetch1("select userid,groupid,classid,userprikey,uprnd from {$dbtbpre}enewsuser where userid='$userid' and username='".$username."' and rnd='".$rnd."' and checked=0 limit 1");
  4764. if(!$adminr['userid'])
  4765. {
  4766. printerror("SingleUser","index.php");
  4767. }
  4768. DoECheckAndAuthRnd($userid,$username,$rnd,$adminr['userprikey'],$cdbdata,$groupid,$adminstyle,$truelogintime);
  4769. //登陆超时
  4770. $logintime=getcvar('logintime',1);
  4771. if($logintime)
  4772. {
  4773. if(time()-$logintime>$public_r['exittime']*60)
  4774. {
  4775. esetcookie("loginrnd","",0,1);
  4776. printerror("LoginTime","index.php");
  4777. }
  4778. esetcookie("logintime",time(),0,1);
  4779. }
  4780. if(getcvar('eloginlic',1)<>"empirecmslic")
  4781. {
  4782. printerror("NotLogin","index.php");
  4783. }
  4784. $ur[userid]=$userid;
  4785. $ur[username]=$username;
  4786. $ur[rnd]=$rnd;
  4787. $ur[groupid]=$adminr[groupid];
  4788. $ur[adminstyleid]=(int)$adminstyle;
  4789. $ur[classid]=$adminr[classid];
  4790. return $ur;
  4791. }
  4792. function is_login_ebak($userid,$username,$rnd){
  4793. global $empire,$public_r;
  4794. $userid=(int)$userid;
  4795. $username=RepPostVar($username);
  4796. $dodbdata=getcvar('ecmsdodbdata',1);
  4797. if(!$userid||!$username)
  4798. {
  4799. printerror("NotLogin","index.php");
  4800. }
  4801. if($dodbdata!="empirecms")
  4802. {
  4803. printerror("NotLogin","index.php");
  4804. }
  4805. $rnd=RepPostVar($rnd);
  4806. //COOKIE验证
  4807. $cdbdata=$dodbdata?1:0;
  4808. $groupid=(int)getcvar('loginlevel',1);
  4809. $adminstyle=(int)getcvar('loginadminstyleid',1);
  4810. $truelogintime=(int)getcvar('truelogintime',1);
  4811. DoChECookieRnd($userid,$username,$rnd,'',$cdbdata,$groupid,$adminstyle,$truelogintime);
  4812. //超时
  4813. $logintime=getcvar('logintime',1);
  4814. if($logintime)
  4815. {
  4816. if(time()-$logintime>$public_r['exittime']*60)
  4817. {
  4818. esetcookie("loginrnd","",0,1);
  4819. printerror("LoginTime","index.php");
  4820. }
  4821. esetcookie("logintime",time(),0,1);
  4822. }
  4823. $ur[userid]=$userid;
  4824. $ur[username]=$username;
  4825. $ur[rnd]=$rnd;
  4826. $ur[groupid]=$groupid;
  4827. $ur[adminstyleid]=$adminstyle;
  4828. $ur[classid]=0;
  4829. return $ur;
  4830. }
  4831. //是否登陆
  4832. function is_login_other($userid,$username,$rnd){
  4833. global $empire,$public_r,$dbtbpre;
  4834. $userid=(int)$userid;
  4835. $username=RepPostVar($username);
  4836. $rnd=RepPostVar($rnd);
  4837. if(!$userid||!$username||!$rnd)
  4838. {
  4839. printerror("NotLogin","index.php");
  4840. }
  4841. $adminstyle=1;
  4842. //db
  4843. $adminr=$empire->fetch1("select userid,groupid,classid,userprikey from {$dbtbpre}enewsuser where userid='$userid' and username='".$username."' and rnd='".$rnd."' and checked=0 limit 1");
  4844. if(!$adminr['userid'])
  4845. {
  4846. printerror("NotLogin","index.php");
  4847. }
  4848. $ur[userid]=$userid;
  4849. $ur[username]=$username;
  4850. $ur[rnd]=$rnd;
  4851. $ur[groupid]=$adminr[groupid];
  4852. $ur[adminstyleid]=(int)$adminstyle;
  4853. $ur[classid]=$adminr[classid];
  4854. return $ur;
  4855. }
  4856. //设置加密验证
  4857. function DoECreateOtherRnd($userid,$username,$rnd,$ckoi=0){
  4858. global $ecms_config;
  4859. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  4860. $otherinfo=$ckoi==1?DoECkOtherInfo():'empire.cms';
  4861. $r['otherrndtime']=time();
  4862. $r['otherrndtwo']=make_password(12);
  4863. $r['otherrndpass']=md5(md5($rnd.'-empirecms.2002!check.other-'.$ecms_config['cks']['ckrndtwo']).'-'.$ip.'empire.cms'.'-'.$otherinfo.'-'.$userid.'-'.$r['otherrndtime'].'-'.$username.'db.check.rnd'.'-'.$rnd.'-phome'.$r['otherrndtwo']);
  4864. return $r;
  4865. }
  4866. //验证加密验证
  4867. function DoECheckOtherRnd($userid,$username,$rnd,$loginecmsotherpass,$loginecmsothertime,$loginecmsotherrndtwo,$ckoi=0,$outtime=1800){
  4868. global $ecms_config;
  4869. if(!$loginecmsotherpass||!$loginecmsothertime)
  4870. {
  4871. printerror("NotLogin","index.php");
  4872. }
  4873. $loginecmsothertime=(int)$loginecmsothertime;
  4874. $todaytime=time();
  4875. if($loginecmsothertime+$outtime<$todaytime||$loginecmsothertime>$todaytime)
  4876. {
  4877. printerror("NotLogin","index.php");
  4878. }
  4879. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  4880. $otherinfo=$ckoi==1?DoECkOtherInfo():'empire.cms';
  4881. $ecmsckpass=md5(md5($rnd.'-empirecms.2002!check.other-'.$ecms_config['cks']['ckrndtwo']).'-'.$ip.'empire.cms'.'-'.$otherinfo.'-'.$userid.'-'.$loginecmsothertime.'-'.$username.'db.check.rnd'.'-'.$rnd.'-phome'.$loginecmsotherrndtwo);
  4882. if('dg'.$ecmsckpass<>'dg'.$loginecmsotherpass)
  4883. {
  4884. printerror("NotLogin","index.php");
  4885. }
  4886. }
  4887. //返回SESSION验证
  4888. function DoESessionRnd(){
  4889. global $ecms_config;
  4890. if(empty($ecms_config['esafe']['ckhsession']))
  4891. {
  4892. return '';
  4893. }
  4894. $sessval=make_password(27);
  4895. $_SESSION['ecmsckhspass']=$sessval;
  4896. return $sessval;
  4897. }
  4898. function ReESessionRnd(){
  4899. global $ecms_config;
  4900. if(empty($ecms_config['esafe']['ckhsession']))
  4901. {
  4902. return '';
  4903. }
  4904. if(!$_SESSION['ecmsckhspass'])
  4905. {
  4906. printerror('NotLogin','index.php');
  4907. }
  4908. return $_SESSION['ecmsckhspass'];
  4909. }
  4910. function DelESessionRnd(){
  4911. global $ecms_config;
  4912. if(empty($ecms_config['esafe']['ckhsession']))
  4913. {
  4914. return '';
  4915. }
  4916. $_SESSION['ecmsckhspass']='';
  4917. unset($_SESSION['ecmsckhspass']);
  4918. session_destroy();
  4919. }
  4920. //返回其他验证信息
  4921. function DoECkOtherInfo(){
  4922. $otherinfo=$_SERVER['HTTP_USER_AGENT'];
  4923. return $otherinfo;
  4924. }
  4925. //COOKIE加密
  4926. function DoECookieRnd($userid,$username,$rnd,$userkey,$dbdata,$groupid,$adminstyle,$truelogintime){
  4927. global $ecms_config;
  4928. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  4929. $otherinfo=DoECkOtherInfo();
  4930. //session
  4931. $sessval=DoESessionRnd();
  4932. $ecmsckpass=md5(md5($rnd.$ecms_config['esafe']['ecookiernd']).'-'.$ip.'-'.$otherinfo.'-'.$userid.'-'.$username.'-'.$dbdata.$rnd.$groupid.'-'.$adminstyle.$sessval);
  4933. esetcookie("loginecmsckpass",$ecmsckpass,0,1);
  4934. DoECreatFileRnd($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval);
  4935. DoECreatAndAuthRnd($userid,$username,$rnd,$userkey,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval);
  4936. }
  4937. function DoChECookieRnd($userid,$username,$rnd,$userkey,$dbdata,$groupid,$adminstyle,$truelogintime){
  4938. global $ecms_config;
  4939. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  4940. $otherinfo=DoECkOtherInfo();
  4941. $sessval=ReESessionRnd();
  4942. $ecmsckpass=md5(md5($rnd.$ecms_config['esafe']['ecookiernd']).'-'.$ip.'-'.$otherinfo.'-'.$userid.'-'.$username.'-'.$dbdata.$rnd.$groupid.'-'.$adminstyle.$sessval);
  4943. if('dg'.$ecmsckpass<>'dg'.getcvar('loginecmsckpass',1))
  4944. {
  4945. printerror("NotLogin","index.php");
  4946. }
  4947. DoECheckFileRnd($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval);
  4948. //ehash
  4949. hCheckEcmsEHash();
  4950. }
  4951. function DelECookieRnd(){
  4952. esetcookie("loginecmsckpass",'',0,1);
  4953. }
  4954. //文件认证
  4955. //返回文件验证DEF变量字符
  4956. function hAdminLoginFileInfoDefStr($str){
  4957. $defstr='dg'.md5('e-c,m@s'.md5($str.'-p.h!o-m5e').'-e.m-p!i8re');
  4958. return $defstr;
  4959. }
  4960. //返回用户缓存信息
  4961. function hReturnAdminLoginFileInfo($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval){
  4962. global $ecms_config;
  4963. $adminlogins='';
  4964. $ernd=make_password(27);
  4965. $erndtwo=make_password(20);
  4966. $erndadd=make_password(32);
  4967. $ehash=make_password(20);
  4968. $ehashname=$ecms_config['esafe']['ckhashename'].make_password(5);
  4969. $rhash=make_password(12);
  4970. $rhashname=$ecms_config['esafe']['ckhashrname'].make_password(5);
  4971. $userid=(int)$userid;
  4972. $dbdata=(int)$dbdata;
  4973. $defhash=$ehashname.'='.$ehash.'||'.$rhashname.'='.$rhash.'||'.$ernd.'||'.$erndtwo;
  4974. $ernddefine=make_password(22);
  4975. $ernddefinemd5=hAdminLoginFileInfoDefStr($ernddefine);
  4976. $eckdiyvar='emec'.abc_make_password(8);
  4977. $eckdiyval=make_password(18);
  4978. define('EmpireCMSHDefHash',$defhash);
  4979. $adminlogins.="<?php
  4980. define('EcmsAdminLogin','EmpireCMS');
  4981. define('EcmsAdminLoginDEF','".$ernddefinemd5."');
  4982. \$ecms_adminloginr=array();
  4983. \$ecms_adminloginr=Array('userid'=>'".$userid."',
  4984. 'ernd'=>'".addslashes($ernd)."',
  4985. 'erndtwo'=>'".addslashes($erndtwo)."',
  4986. 'erndadd'=>'".addslashes($erndadd)."',
  4987. 'ehash'=>'".addslashes($ehash)."',
  4988. 'ehashname'=>'".addslashes($ehashname)."',
  4989. 'rhash'=>'".addslashes($rhash)."',
  4990. 'rhashname'=>'".addslashes($rhashname)."',
  4991. 'eckdiyvar'=>'".addslashes($eckdiyvar)."',
  4992. 'eckdiyval'=>'".addslashes($eckdiyval)."',
  4993. 'edbdata'=>'".$dbdata."');
  4994. ?>";
  4995. esetcookie("loginecmsckfrnd",$ernd,0,1);
  4996. esetcookie("loginecmsckfdef",$ernddefine,0,1);
  4997. esetcookie($eckdiyvar,$eckdiyval,0,1);
  4998. return $adminlogins;
  4999. }
  5000. //文件缓存内容验证
  5001. function hCheckAadminLoginFileInfo(){
  5002. global $ecms_config,$ecms_adminloginr;
  5003. if(!$ecms_adminloginr['ernd']||$ecms_adminloginr['ernd']<>getcvar('loginecmsckfrnd',1))
  5004. {
  5005. printerror("NotLogin","index.php");
  5006. }
  5007. if(!defined('EcmsAdminLogin'))
  5008. {
  5009. printerror("NotLogin","index.php");
  5010. }
  5011. if(!defined('EcmsAdminLoginDEF'))
  5012. {
  5013. printerror("NotLogin","index.php");
  5014. }
  5015. $ckstr=getcvar('loginecmsckfdef',1);
  5016. if(EcmsAdminLoginDEF==''||EcmsAdminLoginDEF=='EcmsAdminLoginDEF'||!$ckstr)
  5017. {
  5018. printerror("NotLogin","index.php");
  5019. }
  5020. $ckdefstr=hAdminLoginFileInfoDefStr($ckstr);
  5021. if(EcmsAdminLoginDEF<>$ckdefstr)
  5022. {
  5023. printerror("NotLogin","index.php");
  5024. }
  5025. $diyck=getcvar($ecms_adminloginr['eckdiyvar'],1);
  5026. if(!$diyck||!$ecms_adminloginr['eckdiyval']||$ecms_adminloginr['eckdiyval']<>$diyck)
  5027. {
  5028. printerror("NotLogin","index.php");
  5029. }
  5030. }
  5031. function DelECookieAdminLoginFileInfo(){
  5032. global $ecms_config,$ecms_adminloginr;
  5033. esetcookie("loginecmsckfrnd",'',0,1);
  5034. esetcookie("loginecmsckfdef",'',0,1);
  5035. esetcookie($ecms_adminloginr['eckdiyvar'],'',0,1);
  5036. }
  5037. //来源Hash验证
  5038. //验证rhash内容
  5039. function hCheckEcmsRHash(){
  5040. global $ecms_config,$ecms_adminloginr;
  5041. if($ecms_config['esafe']['ckhash']==2)//关闭HASH模式
  5042. {
  5043. return '';
  5044. }
  5045. //刺猬模式
  5046. $rhashvar=$ecms_adminloginr['rhashname'];
  5047. $rhash=$ecms_adminloginr['rhash'];
  5048. if($_GET[$rhashvar]&&$_GET[$rhashvar]==$rhash)
  5049. {
  5050. }
  5051. elseif($_POST[$rhashvar]&&$_POST[$rhashvar]==$rhash)
  5052. {
  5053. }
  5054. else
  5055. {
  5056. printerror("FailHash","history.go(-1)");
  5057. }
  5058. //spurl
  5059. if($ecms_config['esafe']['ckfromurl']>3)
  5060. {
  5061. hCheckSpFromUrl();
  5062. }
  5063. }
  5064. //验证ehash内容
  5065. function hCheckEcmsEHash(){
  5066. global $ecms_config,$ecms_adminloginr;
  5067. if($ecms_config['esafe']['ckhash']==2)//关闭HASH模式
  5068. {
  5069. return '';
  5070. }
  5071. if($ecms_config['esafe']['ckhash']==1)//刺猬模式
  5072. {
  5073. return '';
  5074. }
  5075. //金刚模式
  5076. $ehashvar=$ecms_adminloginr['ehashname'];
  5077. $ehash=$ecms_adminloginr['ehash'];
  5078. if($_GET[$ehashvar]&&$_GET[$ehashvar]==$ehash)
  5079. {
  5080. }
  5081. elseif($_POST[$ehashvar]&&$_POST[$ehashvar]==$ehash)
  5082. {
  5083. }
  5084. else
  5085. {
  5086. printerror("FailHash","history.go(-1)");
  5087. }
  5088. }
  5089. //随机ehash附加form
  5090. function hReturnEcmsHashStrAddRnd($ern=2){
  5091. global $ecms_config,$ecms_adminloginr;
  5092. $num=EcmsRandInt(1,$ern);
  5093. $addrnd='';
  5094. $rndstr=uniqid(microtime()).EcmsRandInt();
  5095. for($i=1;$i<=$num;$i++)
  5096. {
  5097. $str=md5($rndstr.$i);
  5098. if($i%2==0)
  5099. {
  5100. $rndname='rhash_'.substr($str,22,4);
  5101. $rndvalue=substr($str,4,12);
  5102. }
  5103. else
  5104. {
  5105. $rndname='ehash_'.substr($str,25,4);
  5106. $rndvalue=substr($str,2,20);
  5107. }
  5108. $addrnd.='<input type=hidden name='.$rndname.' value='.$rndvalue.'>';
  5109. }
  5110. return $addrnd;
  5111. }
  5112. //返回hash变量
  5113. function hReturnEcmsHashStrAll(){
  5114. global $ecms_config,$ecms_adminloginr;
  5115. //刺猬模式
  5116. $rhashvar=$ecms_adminloginr['rhashname'];
  5117. $rhash=$ecms_adminloginr['rhash'];
  5118. //金刚模式
  5119. $ehashvar=$ecms_adminloginr['ehashname'];
  5120. $ehash=$ecms_adminloginr['ehash'];
  5121. //返回
  5122. if($ecms_config['esafe']['ckhash']==2)//关闭HASH模式
  5123. {
  5124. $hashhrefr['href']='';
  5125. $hashhrefr['whhref']='';
  5126. $hashhrefr['form']='';
  5127. $hashhrefr['ehref']='';
  5128. $hashhrefr['whehref']='';
  5129. $hashhrefr['eform']='';
  5130. }
  5131. elseif($ecms_config['esafe']['ckhash']==1)//刺猬模式
  5132. {
  5133. $hashhrefr['href']='&'.$rhashvar.'='.$rhash;
  5134. $hashhrefr['whhref']='?'.$rhashvar.'='.$rhash;
  5135. $hashhrefr['form']=hReturnEcmsHashStrAddRnd(2).'<input type=hidden name='.$rhashvar.' value='.$rhash.'>'.hReturnEcmsHashStrAddRnd(2);
  5136. $hashhrefr['ehref']='';
  5137. $hashhrefr['whehref']='';
  5138. $hashhrefr['eform']='';
  5139. }
  5140. else//金刚模式
  5141. {
  5142. $ehaddrnd=hReturnEcmsHashStrAddRnd();
  5143. $ehaddrnd2=hReturnEcmsHashStrAddRnd(2);
  5144. $ehaddrnd3=hReturnEcmsHashStrAddRnd(2);
  5145. $hashhrefr['href']='&'.$ehashvar.'='.$ehash.'&'.$rhashvar.'='.$rhash;
  5146. $hashhrefr['whhref']='?'.$ehashvar.'='.$ehash.'&'.$rhashvar.'='.$rhash;
  5147. $hashhrefr['form']=$ehaddrnd.'<input type=hidden name='.$ehashvar.' value='.$ehash.'>'.$ehaddrnd2.'<input type=hidden name='.$rhashvar.' value='.$rhash.'>'.$ehaddrnd3;
  5148. $hashhrefr['ehref']='&'.$ehashvar.'='.$ehash;
  5149. $hashhrefr['whehref']='?'.$ehashvar.'='.$ehash;
  5150. $hashhrefr['eform']=$ehaddrnd.'<input type=hidden name='.$ehashvar.' value='.$ehash.'>'.$ehaddrnd2;
  5151. }
  5152. return $hashhrefr;
  5153. }
  5154. //返回hash变量(href)
  5155. function hReturnEcmsHashStrHref($wh=0){
  5156. $hashhrefr=hReturnEcmsHashStrAll();
  5157. return $wh?$hashhrefr['whhref']:$hashhrefr['href'];
  5158. }
  5159. //返回hash变量(ehref)
  5160. function hReturnEcmsHashStrHref2($wh=0){
  5161. $hashhrefr=hReturnEcmsHashStrAll();
  5162. return $wh?$hashhrefr['whehref']:$hashhrefr['ehref'];
  5163. }
  5164. //返回hash变量(form)
  5165. function hReturnEcmsHashStrForm($wh=0){
  5166. $hashhrefr=hReturnEcmsHashStrAll();
  5167. return $hashhrefr['form'];
  5168. }
  5169. //返回hash变量(eform)
  5170. function hReturnEcmsHashStrForm2($wh=0){
  5171. $hashhrefr=hReturnEcmsHashStrAll();
  5172. return $hashhrefr['eform'];
  5173. }
  5174. //返回hash变量(def)
  5175. function hReturnEcmsHashStrDef($wh=0,$ecms='ehref'){
  5176. if($ecms_config['esafe']['ckhash']==2)//关闭HASH模式
  5177. {
  5178. return '';
  5179. }
  5180. $str='';
  5181. $fh=$wh?'?':'&';
  5182. $hr=explode('||',EmpireCMSHDefHash);
  5183. if($ecms=='href')
  5184. {
  5185. if($ecms_config['esafe']['ckhash']==1)//刺猬模式
  5186. {
  5187. $str=$fh.$hr[1];
  5188. }
  5189. else
  5190. {
  5191. $str=$fh.$hr[0].'&'.$hr[1];
  5192. }
  5193. }
  5194. elseif($ecms=='ehref')
  5195. {
  5196. $str=$fh.$hr[0];
  5197. }
  5198. return $str;
  5199. }
  5200. //返回hash变量(erndtwo)
  5201. function hReturnEcmsHashErndDef($ecms=0){
  5202. $str='';
  5203. $hr=explode('||',EmpireCMSHDefHash);
  5204. if($ecms==0)
  5205. {
  5206. $str=$hr[2];
  5207. }
  5208. else
  5209. {
  5210. $str=$hr[3];
  5211. }
  5212. return $str;
  5213. }
  5214. //文件认证处理
  5215. function DoECreatFileRnd($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval){
  5216. global $ecms_config;
  5217. $file=ECMS_PATH.'e/data/adminlogin/user'.$userid.'_'.md5(md5($username.'-empirecms!check.file'.$truelogintime.'-'.$rnd.$ecms_config['esafe']['ecookiernd']).'-'.$ip.'-'.$userid.'-'.$rnd.$adminstyle.'-'.$groupid.'-'.$dbdata.$sessval).'.php';
  5218. $filetext=hReturnAdminLoginFileInfo($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval);
  5219. WriteFiletext_n($file,$filetext);
  5220. }
  5221. function DoECheckFileRnd($userid,$username,$rnd,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval){
  5222. global $ecms_config,$ecms_adminloginr;
  5223. $file=ECMS_PATH.'e/data/adminlogin/user'.$userid.'_'.md5(md5($username.'-empirecms!check.file'.$truelogintime.'-'.$rnd.$ecms_config['esafe']['ecookiernd']).'-'.$ip.'-'.$userid.'-'.$rnd.$adminstyle.'-'.$groupid.'-'.$dbdata.$sessval).'.php';
  5224. if(!file_exists($file))
  5225. {
  5226. printerror('NotLogin','index.php');
  5227. }
  5228. include($file);
  5229. hCheckAadminLoginFileInfo();
  5230. /*
  5231. $filetime=filemtime($file);
  5232. if($filetime>$truelogintime)
  5233. {
  5234. printerror('NotLogin','index.php');
  5235. }
  5236. */
  5237. }
  5238. //切换访问端后台
  5239. function Moreport_eChangeMoreportAdmin($pid,$ecms,$douserid,$dousername){
  5240. global $empire,$dbtbpre,$public_r,$ecms_config;
  5241. CheckLevel($douserid,$dousername,$classid,"chmoreport");//操作权限
  5242. $pid=(int)$pid;
  5243. if(!$pid)
  5244. {
  5245. printerror("EmptyMoreportPid","history.go(-1)");
  5246. }
  5247. $pr=$empire->fetch1("select * from {$dbtbpre}enewsmoreport where pid='$pid'");
  5248. if(!$pr['pid']||!$pr['purl'])
  5249. {
  5250. printerror("EmptyMoreportPid","history.go(-1)");
  5251. }
  5252. if(!$pr['ppath']||!file_exists($pr['ppath'].'e/config/config.php'))
  5253. {
  5254. printerror("EmptyMoreportPid","history.go(-1)");
  5255. }
  5256. if($pr['isclose']||$pr['openadmin']==2)
  5257. {
  5258. printerror("ChangeMoreportIsClose","history.go(-1)");
  5259. }
  5260. if($pid==$ecms_config['sets']['selfmoreportid']||($pid==1&&!$ecms_config['sets']['selfmoreportid']))
  5261. {
  5262. printerror("IsSelfMoreportPid","history.go(-1)");
  5263. }
  5264. //文件名
  5265. $userid=intval(getcvar('loginuserid',1));
  5266. $username=RepPostVar(getcvar('loginusername',1));
  5267. $rnd=RepPostVar(getcvar('loginrnd',1));
  5268. $dbdata=getcvar('ecmsdodbdata',1)?1:0;
  5269. $groupid=(int)getcvar('loginlevel',1);
  5270. $adminstyle=(int)getcvar('loginadminstyleid',1);
  5271. $truelogintime=(int)getcvar('truelogintime',1);
  5272. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  5273. $otherinfo=DoECkOtherInfo();
  5274. $sessval=ReESessionRnd();
  5275. $userloginfile='user'.$userid.'_'.md5(md5($username.'-empirecms!check.file'.$truelogintime.'-'.$rnd.$ecms_config['esafe']['ecookiernd']).'-'.$ip.'-'.$userid.'-'.$rnd.$adminstyle.'-'.$groupid.'-'.$dbdata.$sessval).'.php';
  5276. $fromfile=ECMS_PATH.'e/data/adminlogin/'.$userloginfile;
  5277. $tofile=$pr['ppath'].'e/data/adminlogin/'.$userloginfile;
  5278. if(!file_exists($fromfile))
  5279. {
  5280. printerror("EmptyMoreportPid","history.go(-1)");
  5281. }
  5282. @copy($fromfile,$tofile);
  5283. if(!file_exists($tofile))
  5284. {
  5285. printerror("MoreportPidFailPath","history.go(-1)");
  5286. }
  5287. if($ecms==0)
  5288. {
  5289. DelFiletext($fromfile);
  5290. }
  5291. $selfurl=eReturnSelfPage(0);
  5292. $gourl=substr($pr['purl'],0,-1).str_replace('/enews.php','/admin.php',$selfurl).hReturnEcmsHashStrHref2(1);
  5293. printerror("ChangeMoreportAdminSuccess",$gourl);
  5294. }
  5295. function DoEDelFileRnd($userid){
  5296. $path=ECMS_PATH.'e/data/adminlogin/';
  5297. $hand=@opendir($path);
  5298. while($file=@readdir($hand))
  5299. {
  5300. if($file=='.'||$file=='..')
  5301. {
  5302. continue;
  5303. }
  5304. if(stristr($file,'user'.$userid.'_'))
  5305. {
  5306. DelFiletext($path.$file);
  5307. }
  5308. }
  5309. }
  5310. //附加码认证
  5311. function DoECreatAndAuthRnd($userid,$username,$rnd,$userkey,$dbdata,$groupid,$adminstyle,$truelogintime,$ip,$sessval){
  5312. global $empire,$dbtbpre,$ecms_config;
  5313. $andauth=md5(md5($rnd.'-'.$username.'-empirecms!check.andauth'.$truelogintime.'-'.$ecms_config['esafe']['ecookiernd'].$userkey).$sessval.'-'.$ip.'-'.$userid.$rnd.'-'.$adminstyle.'-'.$groupid.$username.'-'.$dbdata);
  5314. DoEDelAndAuthRnd($userid);
  5315. $empire->query("replace into {$dbtbpre}enewsuserloginck(userid,andauth) values('$userid','$andauth');");
  5316. }
  5317. function DoECheckAndAuthRnd($userid,$username,$rnd,$userkey,$dbdata,$groupid,$adminstyle,$truelogintime){
  5318. global $empire,$dbtbpre,$ecms_config;
  5319. $anduser_r=$empire->fetch1("select andauth from {$dbtbpre}enewsuserloginck where userid='$userid'");
  5320. if(!$anduser_r['andauth'])
  5321. {
  5322. printerror('NotLogin','index.php');
  5323. }
  5324. $ip=$ecms_config['esafe']['ckhloginip']==0?'127.0.0.1':egetip();
  5325. //$otherinfo=DoECkOtherInfo();
  5326. $sessval=ReESessionRnd();
  5327. $ckandauth=md5(md5($rnd.'-'.$username.'-empirecms!check.andauth'.$truelogintime.'-'.$ecms_config['esafe']['ecookiernd'].$userkey).$sessval.'-'.$ip.'-'.$userid.$rnd.'-'.$adminstyle.'-'.$groupid.$username.'-'.$dbdata);
  5328. if('dg'.$anduser_r['andauth']<>'dg'.$ckandauth)
  5329. {
  5330. printerror('NotLogin','index.php');
  5331. }
  5332. }
  5333. function DoEDelAndAuthRnd($userid){
  5334. global $empire,$dbtbpre;
  5335. $empire->query("delete from {$dbtbpre}enewsuserloginck where userid='$userid'");
  5336. }
  5337. //写入操作日志
  5338. function insert_dolog($doing,$pubid=0){
  5339. global $empire,$enews,$phome,$logininid,$loginin,$ecms_config,$dbtbpre;
  5340. if($ecms_config['esafe']['thedolog'])
  5341. {
  5342. return "";
  5343. }
  5344. if(empty($doing))
  5345. {$doing="---";}
  5346. $doing=str_replace('<br>','[e.cms.br]',$doing);
  5347. $doing=eDoRepPostComStr($doing);
  5348. $doing=str_replace('[e.cms.br]','<br>',$doing);
  5349. $doing=addslashes(stripSlashes($doing));
  5350. //ip
  5351. $logip=egetip();
  5352. $ipport=egetipport();
  5353. $logtime=date("Y-m-d H:i:s");
  5354. if(empty($enews))
  5355. {$enews=$phome;}
  5356. $enews=RepPostVar($enews);
  5357. $pubid=RepPostVar($pubid);
  5358. $loginin=RepPostVar($loginin);
  5359. $sql=$empire->query("insert into {$dbtbpre}enewsdolog(username,logip,logtime,enews,doing,pubid,ipport) values('$loginin','$logip','$logtime','$enews','$doing','$pubid','$ipport');");
  5360. }
  5361. //返回安全提问问题
  5362. function ReturnHLoginQuestionStr($userid,$username,$question,$answer){
  5363. $pass=md5(md5('-#20empire27#-'.$question.'-empirecms-'.$userid.'-www.phome.net-'.$answer.'-wm-').'-dg2002-'.$answer.'-wm_chief-'.$userid.'-wangmeng-');
  5364. return $pass;
  5365. }
  5366. //-------------- 远程发布区 ----------------------
  5367. //返回FTP目录或文件绝对地址
  5368. function FtpRTruePath($ftppath,$path){
  5369. $truepath=$ftppath.'/'.$path;
  5370. return $truepath;
  5371. }
  5372. //目录转向
  5373. function FtpChPath($e,$r){
  5374. $path=$r[ftppath].'/e/ftp';
  5375. $e->fChdir($path);
  5376. return '';
  5377. }
  5378. //上传ftp目录
  5379. function FtpTranPath($ftpid,$ldir,$hdir){
  5380. $r=ReturnFtpInfo($ftpid);
  5381. $e=new EmpireCMSFTP();
  5382. $e->fconnect($r[ftphost],$r[ftpport],$r[ftpusername],$r[ftppassword],$r[ftppath],$r[ftpssl],$r[ftppasv],$r[ftpmode],$r[ftpouttime]);
  5383. FtpChPath($e,$r);
  5384. //上传目录
  5385. $e->ftp_copy($ldir,$hdir);
  5386. $e->fExit();
  5387. }
  5388. //删除ftp目录
  5389. function FtpDelPath($ftpid,$dir){
  5390. $r=ReturnFtpInfo($ftpid);
  5391. $e=new EmpireCMSFTP();
  5392. $e->fconnect($r[ftphost],$r[ftpport],$r[ftpusername],$r[ftppassword],$r[ftppath],$r[ftpssl],$r[ftppasv],$r[ftpmode],$r[ftpouttime]);
  5393. FtpChPath($e,$r);
  5394. //删除目录
  5395. $e->ftp_rmAll($dir);
  5396. $e->fExit();
  5397. }
  5398. //删除ftp文件
  5399. function FtpDelFile($ftpid,$fr){
  5400. $r=ReturnFtpInfo($ftpid);
  5401. $e=new EmpireCMSFTP();
  5402. $e->fconnect($r[ftphost],$r[ftpport],$r[ftpusername],$r[ftppassword],$r[ftppath],$r[ftpssl],$r[ftppasv],$r[ftpmode],$r[ftpouttime]);
  5403. FtpChPath($e,$r);
  5404. //删除文件
  5405. $e->fMoreDelFile($fr);
  5406. $e->fExit();
  5407. }
  5408. //上传文件
  5409. function FtpTranFile($ftpid,$fr,$fr1){
  5410. $r=ReturnFtpInfo($ftpid);
  5411. $e=new EmpireCMSFTP();
  5412. $e->fconnect($r[ftphost],$r[ftpport],$r[ftpusername],$r[ftppassword],$r[ftppath],$r[ftpssl],$r[ftppasv],$r[ftpmode],$r[ftpouttime]);
  5413. FtpChPath($e,$r);
  5414. //上传文件
  5415. $e->fMoreTranFile($fr1,$fr);
  5416. $e->fExit();
  5417. }
  5418. //建立ftp目录
  5419. function FtpMkdir($ftpid,$pr,$mod){
  5420. $r=ReturnFtpInfo($ftpid);
  5421. $e=new EmpireCMSFTP();
  5422. $e->fconnect($r[ftphost],$r[ftpport],$r[ftpusername],$r[ftppassword],$r[ftppath],$r[ftpssl],$r[ftppasv],$r[ftpmode],$r[ftpouttime]);
  5423. FtpChPath($e,$r);
  5424. for($i=0;$i<count($pr);$i++)
  5425. {
  5426. if(stristr($pr[$i],ECMS_PATH))
  5427. {
  5428. $pr[$i]=FtpRTruePath($r[ftppath],str_replace(ECMS_PATH,'',$pr[$i]));
  5429. }
  5430. if(!$e->fChdir($pr[$i]))
  5431. {
  5432. $e->fMkdir($pr[$i]);
  5433. if($mod)
  5434. {
  5435. $e->fChmoddir($mod,$pr[$i]);
  5436. }
  5437. }
  5438. }
  5439. $e->fExit();
  5440. }
  5441. //返回ftp信息
  5442. function ReturnFtpInfo($ftpid){
  5443. global $empire,$dbtbpre;
  5444. $r=$empire->fetch1("select * from {$dbtbpre}enewspublic limit 1");
  5445. return $r;
  5446. }
  5447. //初使化发布任务
  5448. function AddPostUrlData($postdata,$userid,$username){
  5449. global $empire,$fun_r,$dbtbpre;
  5450. $count=count($postdata);
  5451. if(empty($count))
  5452. {printerror("NotPostData","history.go(-1)");}
  5453. //操作权限
  5454. CheckLevel($userid,$username,$classid,"postdata");
  5455. $e="!!!";
  5456. $rnd=md5(uniqid(microtime()).EcmsRandInt());
  5457. for($i=0;$i<$count;$i++)
  5458. {
  5459. $r=explode($e,$postdata[$i]);
  5460. $r[1]=(int)$r[1];
  5461. $r[0]=AddAddsData($r[0]);
  5462. $sql=$empire->query("insert into {$dbtbpre}enewspostdata(rnd,postdata,ispath) values('$rnd','$r[0]','$r[1]');");
  5463. }
  5464. $line=(int)$_POST['line'];
  5465. if($line==0)
  5466. {
  5467. $line=10;
  5468. }
  5469. echo $fun_r[AddPostDataSuccess]."<script>self.location.href='enews.php?enews=PostUrlData&start=0&line=$line&rnd=$rnd".hReturnEcmsHashStrHref(0)."';</script>";
  5470. exit();
  5471. }
  5472. //远程发布
  5473. function PostUrlData($start,$rnd,$userid,$username){
  5474. global $empire,$fun_r,$dbtbpre,$incftp;
  5475. $rnd=RepPostVar($rnd);
  5476. if(empty($rnd))
  5477. {printerror("FailCX","history.go(-1)");}
  5478. //操作权限
  5479. CheckLevel($userid,$username,$classid,"postdata");
  5480. //链接FTP
  5481. if(empty($incftp))
  5482. {
  5483. @include(ECMS_PATH."e/class/ftp.php");
  5484. }
  5485. $pr=ReturnFtpInfo($ftpid);
  5486. $e=new EmpireCMSFTP();
  5487. $e->fconnect($pr[ftphost],$pr[ftpport],$pr[ftpusername],$pr[ftppassword],$pr[ftppath],$pr[ftpssl],$pr[ftppasv],$pr[ftpmode],$pr[ftpouttime]);
  5488. FtpChPath($e,$pr);
  5489. $line=(int)$_GET['line'];//每10个为一组
  5490. $start=(int)$start;
  5491. $b=0;
  5492. $sql=$empire->query("select postid,postdata,ispath from {$dbtbpre}enewspostdata where rnd='$rnd' and postid>$start order by postid limit ".$line);
  5493. while($r=$empire->fetch($sql))
  5494. {
  5495. $b=1;
  5496. $newstart=$r[postid];
  5497. //文件
  5498. if($r[ispath])
  5499. {
  5500. $fr=explode(",",$r[postdata]);
  5501. for($i=0;$i<count($fr);$i++)
  5502. {
  5503. $e->fTranFile(FtpRTruePath($pr[ftppath],$fr[$i]),ECMS_PATH.$fr[$i]);
  5504. }
  5505. }
  5506. //目录
  5507. else
  5508. {
  5509. $e->ftp_copy(ECMS_PATH.$r[postdata],FtpRTruePath($pr[ftppath],$r[postdata]));
  5510. }
  5511. }
  5512. $e->fExit();
  5513. if(empty($b))
  5514. {
  5515. $sql=$empire->query("delete from {$dbtbpre}enewspostdata where rnd='$rnd'");
  5516. //操作日志
  5517. insert_dolog("");
  5518. printerror("PostDataSuccess","PostUrlData.php".hReturnEcmsHashStrHref2(1));
  5519. }
  5520. echo $fun_r[OnePostDataSuccess]."<script>self.location.href='enews.php?enews=PostUrlData&start=$newstart&line=$line&rnd=$rnd".hReturnEcmsHashStrHref(0)."';</script>";
  5521. exit();
  5522. }
  5523. //测试FTP
  5524. function CheckFtpConnect($ftphost,$ftpport,$ftpusername,$ftppassword,$ftppath,$ftpssl=0,$pasv=0,$tranmode=0,$timeout=0){
  5525. if(!defined('InEmpireCMSFtp'))
  5526. {
  5527. include(ECMS_PATH.'e/class/ftp.php');
  5528. }
  5529. $eftp=new EmpireCMSFTP();
  5530. $result=$eftp->fconnect($ftphost,$ftpport,$ftpusername,$ftppassword,$ftppath,$ftpssl,$pasv,$tranmode,$timeout,1);
  5531. if($result=='HostFail')
  5532. {
  5533. printerror('FtpHostFail','',8);
  5534. }
  5535. elseif($result=='UserFail')
  5536. {
  5537. printerror('FtpUserFail','',8);
  5538. }
  5539. elseif($result=='PathFail')
  5540. {
  5541. printerror('FtpPathFail','',8);
  5542. }
  5543. else
  5544. {
  5545. printerror('FtpConnectSuccess','',8);
  5546. }
  5547. $eftp->fExit();
  5548. }
  5549. //-------------- 模型区 ----------------------
  5550. //复制表
  5551. function CopyEcmsTb($otb,$tb){
  5552. global $empire;
  5553. $usql=$empire->query("SET SQL_QUOTE_SHOW_CREATE=1;");//设置引号
  5554. $r=$empire->fetch1("SHOW CREATE TABLE `$otb`;");//数据表结构
  5555. $create=str_replace("\"","\\\"",$r[1]);
  5556. $create=str_replace($otb,$tb,$create);
  5557. $empire->query($create);
  5558. }
  5559. //建立数据表
  5560. function SetCreateTable($sql,$dbcharset) {
  5561. global $ecms_config;
  5562. $type=strtoupper(preg_replace("/^\s*CREATE TABLE\s+.+\s+\(.+?\).*(ENGINE|TYPE)\s*=\s*([a-z]+?).*$/isU", "\\2", $sql));
  5563. $type = in_array($type, array('MYISAM', 'HEAP')) ? $type : 'MYISAM';
  5564. return preg_replace("/^\s*(CREATE TABLE\s+.+\s+\(.+?\)).*$/isU", "\\1", $sql).
  5565. ($ecms_config['db']['dbver']>='4.1'&&$dbcharset ? " ENGINE=$type DEFAULT CHARSET=$dbcharset" : " TYPE=$type");
  5566. }
  5567. //组合存文本
  5568. function TogSaveTxtF($ecms=0){
  5569. global $empire,$dbtbpre;
  5570. $savesql=$empire->query("select f,tbname from {$dbtbpre}enewsf where savetxt=1");
  5571. $savef=',';
  5572. while($saver=$empire->fetch($savesql))
  5573. {
  5574. $savef.=$saver[tbname].'.'.$saver[f].',';
  5575. }
  5576. $empire->query("update {$dbtbpre}enewspublic set savetxtf='$savef' limit 1");
  5577. if($ecms==0)
  5578. {
  5579. GetConfig();
  5580. }
  5581. }
  5582. //返回附件字段
  5583. function ReturnMFileF($enter,$tbname,$tid,$fform="file"){
  5584. global $empire;
  5585. $record="<!--record-->";
  5586. $field="<!--field--->";
  5587. if($tid)
  5588. {
  5589. $a=" and tid='$tid'";
  5590. }
  5591. $f=",";
  5592. $sql=$empire->query("select f from ".$tbname." where fform='$fform'".$a);
  5593. while($r=$empire->fetch($sql))
  5594. {
  5595. if(strstr($enter,$field.$r[f].$record))
  5596. {
  5597. $f.=$r[f].",";
  5598. }
  5599. }
  5600. return $f;
  5601. }
  5602. //执行字段函数
  5603. function DoFFun($mid,$f,$value,$isadd=1,$isq=0){
  5604. global $empire,$dbtbpre,$emod_r;
  5605. if($isq==1)//前台
  5606. {
  5607. $dofun=$isadd==1?$emod_r[$mid]['qadddofunf']:$emod_r[$mid]['qeditdofunf'];
  5608. }
  5609. else//后台
  5610. {
  5611. $dofun=$isadd==1?$emod_r[$mid]['adddofunf']:$emod_r[$mid]['editdofunf'];
  5612. }
  5613. if(!strstr($dofun,'||'.$f.'!#!'))
  5614. {
  5615. return $value;
  5616. }
  5617. $dfr=explode('||'.$f.'!#!',$dofun);
  5618. $dfr1=explode('||',$dfr[1]);
  5619. $r=explode('##',$dfr1[0]);
  5620. if($r[0])
  5621. {
  5622. $fun=$r[0];
  5623. $value=$fun($mid,$f,$isadd,$isq,$value,$r[1]);
  5624. }
  5625. return $value;
  5626. }
  5627. //执行模型函数
  5628. function DoMFun($mid,$classid,$id,$isadd=1,$isq=0){
  5629. global $empire,$dbtbpre,$emod_r;
  5630. if($isq==1)//前台
  5631. {
  5632. if($isadd==1)//增加
  5633. {
  5634. $dofun=$emod_r[$mid]['qmaddfun'];
  5635. }
  5636. else//修改
  5637. {
  5638. $dofun=$emod_r[$mid]['qmeditfun'];
  5639. }
  5640. }
  5641. else//后台
  5642. {
  5643. if($isadd==1)//增加
  5644. {
  5645. $dofun=$emod_r[$mid]['maddfun'];
  5646. }
  5647. else//修改
  5648. {
  5649. $dofun=$emod_r[$mid]['meditfun'];
  5650. }
  5651. }
  5652. if(!$dofun)
  5653. {
  5654. return '';
  5655. }
  5656. $r=explode('##',$dofun);
  5657. if(!$r[0])
  5658. {
  5659. return '';
  5660. }
  5661. $fun=$r[0];
  5662. $value=$fun($mid,$isadd,$isq,$classid,$id,$r[1]);
  5663. }
  5664. //取得字段名
  5665. function ChGetFname($mid,$f){
  5666. global $empire,$dbtbpre,$emod_r;
  5667. $r=$empire->fetch1("select fname from {$dbtbpre}enewsf where f='$f' and tid='".$emod_r[$mid]['tid']."' limit 1");
  5668. return $r[fname]?$r[fname]:$f;
  5669. }
  5670. //验证必填项
  5671. function ChMustAddF($mid,$f,$value){
  5672. global $empire,$dbtbpre,$emod_r;
  5673. if(strstr($emod_r[$mid]['mustqenterf'],','.$f.','))
  5674. {
  5675. if(!trim($value))
  5676. {
  5677. $GLOBALS['msgmustf']=ChGetFname($mid,$f);
  5678. printerror("EmptyMustF","history.go(-1)");
  5679. }
  5680. }
  5681. }
  5682. //验证唯一项
  5683. function ChIsOnlyAddF($mid,$id,$f,$value,$isq=0){
  5684. global $empire,$dbtbpre,$emod_r;
  5685. $mid=(int)$mid;
  5686. if(strstr($emod_r[$mid]['onlyf'],','.$f.','))
  5687. {
  5688. $id=(int)$id;
  5689. $and='';
  5690. if($id)
  5691. {
  5692. $and=" and id<>$id";
  5693. }
  5694. $value=RepPostStr($value);
  5695. //已审核
  5696. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$emod_r[$mid]['tbname']." where ".$f."='".addslashes($value)."'".$and." limit 1");
  5697. //未审核
  5698. if(empty($num))
  5699. {
  5700. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$emod_r[$mid]['tbname']."_check where ".$f."='".addslashes($value)."'".$and." limit 1");
  5701. }
  5702. if($num)
  5703. {
  5704. $GLOBALS['msgisonlyf']=ChGetFname($mid,$f);
  5705. if($isq==1)
  5706. {
  5707. printerror("ReIsOnlyF","history.go(-1)",1);
  5708. }
  5709. else
  5710. {
  5711. printerror("ReIsOnlyF","history.go(-1)");
  5712. }
  5713. }
  5714. }
  5715. }
  5716. //数据同步
  5717. function SameDataAddF($id,$classid,$mid,$f,$value){
  5718. global $empire,$public_r,$dbtbpre,$emod_r,$emod_pubr;
  5719. if(strstr($emod_pubr['linkfields'],','.$emod_r[$mid]['tbname'].'.'.$f.'|'))
  5720. {
  5721. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$emod_r[$mid]['tbname']."_index where id='$id' limit 1");
  5722. //返回表
  5723. $infotb=empty($index_r['checked'])?$dbtbpre.'ecms_'.$emod_r[$mid]['tbname'].'_check':$dbtbpre.'ecms_'.$emod_r[$mid]['tbname'];
  5724. $value=addslashes($value);
  5725. $r=$empire->fetch1("select ".$f." from ".$infotb." where id='$id' limit 1");
  5726. if($r[$f]<>$value)
  5727. {
  5728. $tbr=ReturnSameDataTb($emod_r[$mid]['tbname'],$f);
  5729. $ltbname=$tbr[0];
  5730. $lf=$tbr[1];
  5731. if($ltbname&&$lf)
  5732. {
  5733. $empire->query("update {$dbtbpre}ecms_".$ltbname." set ".$lf."='$value' where ".$lf."='$r[$f]'");
  5734. }
  5735. }
  5736. }
  5737. }
  5738. //返回数据同步表与字段名
  5739. function ReturnSameDataTb($tbname,$f){
  5740. global $public_r,$emod_pubr;
  5741. $expr=explode(','.$tbname.'.'.$f.'|',$emod_pubr['linkfields']);
  5742. $expr1=explode('|',$expr[0]);
  5743. $count=count($expr1)-1;
  5744. $tbr=explode('.',$expr1[$count]);
  5745. return $tbr;
  5746. }
  5747. //自定义字段返回模板字段处理
  5748. function doReturnAddTempf($temp){
  5749. $record="<!--record-->";
  5750. $field="<!--field--->";
  5751. $r=explode($record,$temp);
  5752. $count=count($r);
  5753. $str=',';
  5754. for($i=0;$i<$count-1;$i++)
  5755. {
  5756. $r1=explode($field,$r[$i]);
  5757. $str.=$r1[1].",";
  5758. }
  5759. if($str==',,')
  5760. {
  5761. $str=',';
  5762. }
  5763. return $str;
  5764. }
  5765. //处理多值字段
  5766. function DoFieldMoreValue($f,$add,$ecms=0){
  5767. $rvarname=$f.'_1';
  5768. $count=count($add[$rvarname]);
  5769. if(empty($count))
  5770. {
  5771. return '';
  5772. }
  5773. //变量
  5774. $mvnumvar='mvnum_'.$f;
  5775. $mvmustvar='mvmust_'.$f;
  5776. $mvidvarname=$f.'_mvid';
  5777. $mvid=$add[$mvidvarname];
  5778. $mvdelidvarname=$f.'_mvdelid';
  5779. $mvdelid=$add[$mvdelidvarname];
  5780. //处理
  5781. $mvnum=(int)$add[$mvnumvar];
  5782. if($mvnum<1||$mvnum>50)
  5783. {
  5784. $mvnum=1;
  5785. }
  5786. $mvmust=(int)$add[$mvmustvar];
  5787. if($mvmust<1)
  5788. {
  5789. $mvmust=0;
  5790. }
  5791. if($ecms==1)
  5792. {
  5793. $delcount=count($mvdelid);
  5794. }
  5795. $rexp='||||||';
  5796. $fexp='::::::';
  5797. $rstr='';
  5798. $rstrexp='';
  5799. for($i=0;$i<$count;$i++)
  5800. {
  5801. //删除
  5802. if($ecms==1)
  5803. {
  5804. $del=0;
  5805. for($d=0;$d<$delcount;$d++)
  5806. {
  5807. if($mvdelid[$d]==$mvid[$i])
  5808. {
  5809. $del=1;
  5810. break;
  5811. }
  5812. }
  5813. if($del)
  5814. {continue;}
  5815. }
  5816. $fstr='';
  5817. $fstrexp='';
  5818. $fstrempty=0;
  5819. for($j=0;$j<$mvnum;$j++)
  5820. {
  5821. $k=$j+1;
  5822. $fsvarname=$f.'_'.$k;
  5823. $fsval=$add[$fsvarname][$i];
  5824. $fsval=str_replace($rexp,'',$fsval);
  5825. $fsval=str_replace($fexp,'',$fsval);
  5826. if(CheckValEmpty($fsval))
  5827. {
  5828. if($k==$mvmust)
  5829. {
  5830. break;
  5831. $fstrempty=1;
  5832. }
  5833. }
  5834. $fstr.=$fstrexp.$fsval;
  5835. $fstrexp=$fexp;
  5836. }
  5837. if(empty($fstr)||$fstrempty)
  5838. {
  5839. continue;
  5840. }
  5841. $rstr.=$rstrexp.$fstr;
  5842. $rstrexp=$rexp;
  5843. }
  5844. return $rstr;
  5845. }
  5846. //返回多值字段数据
  5847. function ReturnMoreValueAddF($add,$r,$mid,$f,$ecms=0){
  5848. global $public_r,$emod_r;
  5849. $val=$r;
  5850. if(strstr($emod_r[$mid]['morevaluef'],'|'.$f.','))
  5851. {
  5852. $varname=$f.'_1';
  5853. if(is_array($add[$varname]))
  5854. {
  5855. $val=DoFieldMoreValue($f,$add,$ecms);
  5856. }
  5857. else
  5858. {
  5859. $val='';
  5860. }
  5861. }
  5862. return $val;
  5863. }
  5864. //组合复选框数据
  5865. function ReturnCheckboxAddF($r,$mid,$f){
  5866. global $public_r,$emod_r;
  5867. $val=$r;
  5868. if(is_array($r)&&strstr($emod_r[$mid]['checkboxf'],','.$f.','))
  5869. {
  5870. $val='';
  5871. $count=count($r);
  5872. for($i=0;$i<$count;$i++)
  5873. {
  5874. $val.=$r[$i].'|';
  5875. }
  5876. if($val)
  5877. {
  5878. $val='|'.$val;
  5879. }
  5880. }
  5881. return $val;
  5882. }
  5883. //信息字段值处理
  5884. function DohFieldValue($mid,$f,$val,$gr){
  5885. global $public_r,$emod_r,$lur;
  5886. $val=RepPhpAspJspcodeText($val);
  5887. if($gr['docanhtml'])
  5888. {
  5889. return $val;
  5890. }
  5891. if(strstr($emod_r[$mid]['editorf'],','.$f.','))//编辑器
  5892. {
  5893. $val=ClearNewsBadCode($val);
  5894. }
  5895. else
  5896. {
  5897. $val=eDoRepPostComStr($val,1);//替换html
  5898. }
  5899. return $val;
  5900. }
  5901. //返回自定义字段
  5902. function ReturnAddF($add,$modid,$userid,$username,$do=0,$rdata=0,$ch=0){
  5903. global $empire,$public_r,$dbtbpre,$emod_r,$lur;
  5904. $ugroupid=(int)$lur['groupid'];
  5905. $ugr=ReturnLeftLevel($ugroupid);
  5906. if($do==0||$do==1)
  5907. {
  5908. //导入gd处理文件
  5909. if($add['mark']||$add['getfirsttitlespic']||$add['mcreatespic'])
  5910. {
  5911. include_once(ECMS_PATH.'e/class/gd.php');
  5912. }
  5913. }
  5914. $ret_r['tb']=$emod_r[$modid]['deftb'];
  5915. $pagef=$emod_r[$modid]['pagef'];
  5916. $r=explode(',',$emod_r[$modid][enter]);
  5917. $count=count($r)-1;
  5918. if(empty($do))//增加
  5919. {
  5920. //数据库操作
  5921. for($i=1;$i<$count;$i++)
  5922. {
  5923. $f=$r[$i];
  5924. if($f=='special.field'||!strstr($emod_r[$modid]['canaddf'],','.$f.','))
  5925. {
  5926. continue;
  5927. }
  5928. $add[$f]=ReturnCheckboxAddF($add[$f],$modid,$f);//复选框
  5929. $add[$f]=ReturnMoreValueAddF($add,$add[$f],$modid,$f,$do);//多值
  5930. $value=RepPhpAspJspcodeText($add[$f]);
  5931. if($f=='newstime')//时间
  5932. {
  5933. $value=empty($value)?time():to_time($value);
  5934. }
  5935. elseif($f=="morepic")//图片集
  5936. {
  5937. $value=ReturnMorepicpath($add['msmallpic'],$add['mbigpic'],$add['mpicname'],$add['mdelpicid'],$add['mpicid'],$add,$add['mpicurl_qz'],0,0,$public_r['filedeftb']);
  5938. }
  5939. elseif($f=="downpath")//下载地址
  5940. {
  5941. $value=ReturnDownpath($add['downname'],$add['downpath'],$add['delpathid'],$add['pathid'],$add['downuser'],$add['fen'],$add['thedownqz'],$add,$add['foruser'],$add['downurl_qz'],0);
  5942. }
  5943. elseif($f=="onlinepath")//在线地址
  5944. {
  5945. $value=ReturnDownpath($add['odownname'],$add['odownpath'],$add['odelpathid'],$add['opathid'],$add['odownuser'],$add['ofen'],$add['othedownqz'],$add,$add['oforuser'],$add['onlineurl_qz'],0);
  5946. }
  5947. elseif($f=="smalltext")//简介
  5948. {
  5949. if(!trim($value))
  5950. {
  5951. $value=SubSmalltextVal($add[newstext],$public_r[smalltextlen]);//截取新闻内容
  5952. }
  5953. }
  5954. elseif($f=='infoip')//ip
  5955. {
  5956. $value=egetip();
  5957. }
  5958. elseif($f=='infoipport')//ip端口
  5959. {
  5960. $value=egetipport();
  5961. }
  5962. elseif($f=='infozm')//字母
  5963. {
  5964. $value=$value?$value:GetInfoZm($add[title]);
  5965. }
  5966. $value=eDoInfoTbfToQj($emod_r[$modid]['tbname'],$f,$value,$public_r['toqjf']);
  5967. //处理函数
  5968. $value=DoFFun($modid,$f,$value,1,0);
  5969. $modispagef=$pagef==$f?1:0;
  5970. $value=RepTempvarPostStrT($value,$modispagef);
  5971. if($pagef!=$f)
  5972. {
  5973. $value=RepTempvarPostStr($value);
  5974. }
  5975. //检测必填字段
  5976. if($ch==1&&empty($add['titleurl']))
  5977. {
  5978. ChMustAddF($modid,$f,$value);
  5979. ChIsOnlyAddF($modid,0,$f,$value,0);//唯一值
  5980. }
  5981. $value=DohFieldValue($modid,$f,$value,$ugr);
  5982. $value=hRepPostStr2($value);
  5983. //编辑器
  5984. if($f=="newstext")
  5985. {
  5986. //远程保存
  5987. $value=addslashes(CopyImg(stripSlashes($value),$add[copyimg],$add[copyflash],$add[classid],$add[qz_url],$username,$add['id'],$add['filepass'],$add['mark'],$public_r['filedeftb']));
  5988. //替换关键字和字符
  5989. $value=DoReplaceKeyAndWord($value,$add['dokey'],$add['classid']);
  5990. //自动分页
  5991. if($add[autopage]&&!strstr($value,"[!--empirenews.page--]"))
  5992. {
  5993. if(empty($add[autosize]))
  5994. {$add[autosize]=5000;}
  5995. $value=AutoDoPage($value,$add[autosize]);
  5996. }
  5997. }
  5998. //存文本
  5999. if($emod_r[$modid]['savetxtf']&&$f==$emod_r[$modid]['savetxtf'])
  6000. {
  6001. //建立目录
  6002. $thetxtfile=GetFileMd5();
  6003. $truevalue=MkDirTxtFile(date("Y/md"),$thetxtfile);
  6004. //写放文件
  6005. EditTxtFieldText($truevalue,$value);
  6006. $value=$truevalue;
  6007. }
  6008. if(strstr($emod_r[$modid]['tbdataf'],','.$f.','))//副表
  6009. {
  6010. $ret_r['datafields'].=",".$f;
  6011. $ret_r['datavalues'].=",'".addslashes($value)."'";
  6012. }
  6013. else//主表
  6014. {
  6015. $ret_r['fields'].=",".$f;
  6016. $ret_r['values'].=",'".addslashes($value)."'";
  6017. }
  6018. }
  6019. }
  6020. elseif($do==1)//修改
  6021. {
  6022. //数据库操作
  6023. for($i=1;$i<$count;$i++)
  6024. {
  6025. $f=$r[$i];
  6026. if($f=="special.field"||!strstr($emod_r[$modid]['caneditf'],','.$f.','))
  6027. {
  6028. continue;
  6029. }
  6030. $add[$f]=ReturnCheckboxAddF($add[$f],$modid,$f);//复选框
  6031. $add[$f]=ReturnMoreValueAddF($add,$add[$f],$modid,$f,$do);//多值
  6032. $value=RepPhpAspJspcodeText($add[$f]);
  6033. if($f=='newstime')//时间
  6034. {
  6035. $value=empty($value)?time():to_time($value);
  6036. }
  6037. elseif($f=="morepic")//图片集
  6038. {
  6039. $value=ReturnMorepicpath($add['msmallpic'],$add['mbigpic'],$add['mpicname'],$add['mdelpicid'],$add['mpicid'],$add,$add['mpicurl_qz'],1,0,intval($add['fstb']));
  6040. }
  6041. elseif($f=="downpath")//下载地址
  6042. {
  6043. $value=ReturnDownpath($add['downname'],$add['downpath'],$add['delpathid'],$add['pathid'],$add['downuser'],$add['fen'],$add['thedownqz'],$add,$add['foruser'],$add['downurl_qz'],1);
  6044. }
  6045. elseif($f=="onlinepath")//在线地址
  6046. {
  6047. $value=ReturnDownpath($add['odownname'],$add['odownpath'],$add['odelpathid'],$add['opathid'],$add['odownuser'],$add['ofen'],$add['othedownqz'],$add,$add['oforuser'],$add['onlineurl_qz'],1);
  6048. }
  6049. elseif($f=="smalltext")//简介
  6050. {
  6051. if(!trim($value))
  6052. {
  6053. $value=SubSmalltextVal($add[newstext],$public_r[smalltextlen]);//截取新闻内容
  6054. }
  6055. }
  6056. elseif($f=='infozm')//字母
  6057. {
  6058. $value=$value?$value:GetInfoZm($add[title]);
  6059. }
  6060. $value=eDoInfoTbfToQj($emod_r[$modid]['tbname'],$f,$value,$public_r['toqjf']);
  6061. //处理函数
  6062. $value=DoFFun($modid,$f,$value,0,0);
  6063. $modispagef=$pagef==$f?1:0;
  6064. $value=RepTempvarPostStrT($value,$modispagef);
  6065. if($pagef!=$f)
  6066. {
  6067. $value=RepTempvarPostStr($value);
  6068. }
  6069. //检测必填字段
  6070. if($ch==1&&empty($add['titleurl']))
  6071. {
  6072. ChMustAddF($modid,$f,$value);
  6073. ChIsOnlyAddF($modid,$add[id],$f,$value,0);//唯一值
  6074. }
  6075. $value=DohFieldValue($modid,$f,$value,$ugr);
  6076. $value=hRepPostStr2($value);
  6077. //数据同步
  6078. SameDataAddF($add[id],$add[classid],$modid,$f,$value);
  6079. //内容
  6080. if($f=="newstext")
  6081. {
  6082. //远程保存
  6083. $value=addslashes(CopyImg(stripSlashes($value),$add[copyimg],$add[copyflash],$add[classid],$add[qz_url],$username,$add['id'],$add['filepass'],$add['mark'],intval($add['fstb'])));
  6084. //自动分页
  6085. if($add[autopage]&&!strstr($value,"[!--empirenews.page--]"))
  6086. {
  6087. if(empty($add[autosize]))
  6088. {$add[autosize]=5000;}
  6089. $value=AutoDoPage($value,$add[autosize]);
  6090. }
  6091. }
  6092. //存文本
  6093. if($emod_r[$modid]['savetxtf']&&$f==$emod_r[$modid]['savetxtf'])
  6094. {
  6095. //建立目录
  6096. $newstexttxt_r=explode("/",$add[newstext_url]);
  6097. $thetxtfile=$newstexttxt_r[2];
  6098. eCheckStrType(1,$newstexttxt_r[0],1);
  6099. eCheckStrType(1,$newstexttxt_r[1],1);
  6100. eCheckStrType(3,$thetxtfile,1);
  6101. $truevalue=MkDirTxtFile($newstexttxt_r[0]."/".$newstexttxt_r[1],$thetxtfile);
  6102. //写放文件
  6103. EditTxtFieldText($truevalue,$value);
  6104. $value=$truevalue;
  6105. }
  6106. if(strstr($emod_r[$modid]['tbdataf'],','.$f.','))//副表
  6107. {
  6108. $ret_r['datafields'].=",".$f;
  6109. $ret_r['datavalues'].=",".$f."='".addslashes($value)."'";
  6110. }
  6111. else//主表
  6112. {
  6113. $ret_r['fields'].=",".$f;
  6114. $ret_r['values'].=",".$f."='".addslashes($value)."'";
  6115. }
  6116. }
  6117. }
  6118. elseif($do==8)//同步修改
  6119. {
  6120. //数据库操作
  6121. for($i=1;$i<$count;$i++)
  6122. {
  6123. $f=$r[$i];
  6124. if($f=='special.field')
  6125. {
  6126. continue;
  6127. }
  6128. $value=$add[$f];
  6129. //存文本
  6130. if($emod_r[$modid]['savetxtf']&&$f==$emod_r[$modid]['savetxtf'])
  6131. {
  6132. //建立目录
  6133. $newstexttxt_r=explode("/",$add[newstext_url]);
  6134. $thetxtfile=$newstexttxt_r[2];
  6135. eCheckStrType(1,$newstexttxt_r[0],1);
  6136. eCheckStrType(1,$newstexttxt_r[1],1);
  6137. eCheckStrType(3,$thetxtfile,1);
  6138. $truevalue=MkDirTxtFile($newstexttxt_r[0]."/".$newstexttxt_r[1],$thetxtfile);
  6139. //写放文件
  6140. EditTxtFieldText($truevalue,$value);
  6141. $value=$truevalue;
  6142. }
  6143. if(strstr($emod_r[$modid]['tbdataf'],','.$f.','))//副表
  6144. {
  6145. $ret_r['datafields'].=",".$f;
  6146. $ret_r['datavalues'].=",".$f."='".StripAddsData($value)."'";
  6147. }
  6148. else//主表
  6149. {
  6150. $ret_r['fields'].=",".$f;
  6151. $ret_r['values'].=",".$f."='".StripAddsData($value)."'";
  6152. }
  6153. }
  6154. }
  6155. elseif($do==9)//复制
  6156. {
  6157. //数据库操作
  6158. for($i=1;$i<$count;$i++)
  6159. {
  6160. $f=$r[$i];
  6161. if($f=='special.field')
  6162. {
  6163. continue;
  6164. }
  6165. $value=$add[$f];
  6166. //存文本
  6167. if($emod_r[$modid]['savetxtf']&&$f==$emod_r[$modid]['savetxtf'])
  6168. {
  6169. //建立目录
  6170. $thetxtfile=GetFileMd5();
  6171. $truevalue=MkDirTxtFile(date("Y/md"),$thetxtfile);
  6172. //写放文件
  6173. EditTxtFieldText($truevalue,$value);
  6174. $value=$truevalue;
  6175. }
  6176. if(strstr($emod_r[$modid]['tbdataf'],','.$f.','))//副表
  6177. {
  6178. $ret_r['datafields'].=",".$f;
  6179. $ret_r['datavalues'].=",'".StripAddsData($value)."'";
  6180. }
  6181. else//主表
  6182. {
  6183. $ret_r['fields'].=",".$f;
  6184. $ret_r['values'].=",'".StripAddsData($value)."'";
  6185. }
  6186. }
  6187. }
  6188. elseif($do==10)//归档
  6189. {
  6190. //数据库操作
  6191. for($i=1;$i<$count;$i++)
  6192. {
  6193. $f=$r[$i];
  6194. if($f=='special.field')
  6195. {
  6196. continue;
  6197. }
  6198. $value=$add[$f];
  6199. if(strstr($emod_r[$modid]['tbdataf'],','.$f.','))//副表
  6200. {
  6201. $ret_r['datafields'].=",".$f;
  6202. $ret_r['datavalues'].=",'".StripAddsData($value)."'";
  6203. }
  6204. else//主表
  6205. {
  6206. $ret_r['fields'].=",".$f;
  6207. $ret_r['values'].=",'".StripAddsData($value)."'";
  6208. }
  6209. }
  6210. }
  6211. return $ret_r;
  6212. }
  6213. //返回采集字段
  6214. function ReturnAddCj($add,$cj,$do=0){
  6215. global $empire;
  6216. $record="<!--record-->";
  6217. $field="<!--field--->";
  6218. $record_r=explode($record,$cj);
  6219. for($i=0;$i<count($record_r)-1;$i++)
  6220. {
  6221. $field_r=explode($field,$record_r[$i]);
  6222. //增加
  6223. if(empty($do))
  6224. {
  6225. $f1="zz_".$field_r[1];
  6226. $f2="z_".$field_r[1];
  6227. $f3="qz_".$field_r[1];
  6228. $f4="save_".$field_r[1];
  6229. $ret_r[0].=",".$f1.",".$f2.",".$f3.",".$f4;
  6230. $ret_r[1].=",'".eaddslashes2($add[$f1])."','".eaddslashes2($add[$f2])."','".eaddslashes2($add[$f3])."','".$add[$f4]."'";
  6231. }
  6232. //修改
  6233. else
  6234. {
  6235. $f1="zz_".$field_r[1];
  6236. $f2="z_".$field_r[1];
  6237. $f3="qz_".$field_r[1];
  6238. $f4="save_".$field_r[1];
  6239. $ret_r[0].=",".$f1."='".eaddslashes2($add[$f1])."',".$f2."='".eaddslashes2($add[$f2])."',".$f3."='".eaddslashes2($add[$f3])."',".$f4."='".$add[$f4]."'";
  6240. }
  6241. }
  6242. return $ret_r;
  6243. }
  6244. //图片集上传图片
  6245. function SaveMorepicFile($varname,$msavepic,$i,$picurl,$picname,$classid,$id,$add,$modtype=0,$fstb=1){
  6246. global $public_r,$empire,$loginin,$dbtbpre,$ecms_config;
  6247. if($varname=="mbigpfile")
  6248. {
  6249. $addname="[b]";
  6250. }
  6251. $type=1;
  6252. $r[url]=$picurl;
  6253. //上传
  6254. if($_FILES[$varname]['name'][$i])
  6255. {
  6256. //取得文件类型
  6257. $filetype=GetFiletype($_FILES[$varname]['name'][$i]);
  6258. //允许上传类型
  6259. if(CheckSaveTranFiletype($filetype))
  6260. {
  6261. return $r;
  6262. }
  6263. if(!strstr($public_r['filetype'],"|".$filetype."|"))
  6264. {
  6265. return $r;
  6266. }
  6267. //图片文件
  6268. if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.','))
  6269. {
  6270. return $r;
  6271. }
  6272. //文件大小
  6273. if($_FILES[$varname]['size'][$i]>$public_r['filesize']*1024)
  6274. {
  6275. return $r;
  6276. }
  6277. //上传
  6278. $r=DoTranFile($_FILES[$varname]['tmp_name'][$i],$_FILES[$varname]['name'][$i],$_FILES[$varname]['type'][$i],$_FILES[$varname]['size'][$i],$classid);
  6279. //------------------------写入数据库
  6280. $r[filesize]=(int)$r[filesize];
  6281. $classid=(int)$classid;
  6282. if(empty($picname))
  6283. {
  6284. $picname=$r[filename];
  6285. }
  6286. else
  6287. {
  6288. $picname=$addname.$picname;
  6289. }
  6290. $picname=RepPostStr($picname);
  6291. $id=(int)$id;
  6292. $cjid=0;
  6293. if(!$id)
  6294. {
  6295. $cjid=(int)$add['filepass'];
  6296. }
  6297. eInsertFileTable($r[filename],$r[filesize],$r[filepath],$loginin,$classid,$picname,$type,$id,$cjid,$public_r[fpath],0,0,$fstb);
  6298. return $r;
  6299. }
  6300. //远程保存
  6301. else
  6302. {
  6303. if(empty($msavepic))
  6304. {
  6305. return $r;
  6306. }
  6307. if(empty($picurl))
  6308. {
  6309. return $r;
  6310. }
  6311. //----------------取得文件类型
  6312. $filetype=GetFiletype($picurl);
  6313. //允许上传类型
  6314. if(CheckSaveTranFiletype($filetype))
  6315. {
  6316. return $r;
  6317. }
  6318. if(!strstr($public_r['filetype'],"|".$filetype."|"))
  6319. {
  6320. return $r;
  6321. }
  6322. //图片文件
  6323. if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.','))
  6324. {
  6325. return $r;
  6326. }
  6327. //保存
  6328. $r=DoTranUrl($picurl,$classid);
  6329. if($r['tran'])
  6330. {
  6331. //记录数据库
  6332. //变量处理
  6333. $r[filesize]=(int)$r[filesize];
  6334. $classid=(int)$classid;
  6335. $r[type]=(int)$r[type];
  6336. if(empty($picname))
  6337. {
  6338. $picname=$r[filename];
  6339. }
  6340. else
  6341. {
  6342. $picname=$addname.$picname;
  6343. }
  6344. $picname=RepPostStr($picname);
  6345. $id=(int)$id;
  6346. $cjid=0;
  6347. if(!$id)
  6348. {
  6349. $cjid=(int)$add['filepass'];
  6350. }
  6351. eInsertFileTable($r[filename],$r[filesize],$r[filepath],$loginin,$classid,$picname,$type,$id,$cjid,$public_r[fpath],0,0,$fstb);
  6352. return $r;
  6353. }
  6354. return $r;
  6355. }
  6356. }
  6357. //入库时远程保存
  6358. function LoadInSaveMorepicFile($morepic,$msavepic,$classid,$id,$add,$modtype=0,$fstb=1){
  6359. if(empty($morepic)||!$msavepic)
  6360. {
  6361. return $morepic;
  6362. }
  6363. $f_exp="::::::";
  6364. $r_exp="\r\n";
  6365. $returnstr="";
  6366. $r=explode($r_exp,$morepic);
  6367. $countr=count($r);
  6368. for($i=0;$i<$countr;$i++)
  6369. {
  6370. $r1=explode($f_exp,$r[$i]);
  6371. //小图
  6372. $smpr=SaveMorepicFile("msmallpfile",$msavepic,0,$r1[0],$r1[2],$classid,$id,$add,$modtype,$fstb);
  6373. $spic=$smpr[url];
  6374. //大图
  6375. if($r1[0]!=$r1[1])
  6376. {
  6377. $bmpr=SaveMorepicFile("mbigpfile",$msavepic,0,$r1[1],$r1[2],$classid,$id,$add,$modtype,$fstb);
  6378. $bpic=$bmpr[url];
  6379. }
  6380. else
  6381. {
  6382. $bpic=$spic;
  6383. }
  6384. if($spic)
  6385. {
  6386. $returnstr.=$spic.$f_exp.$bpic.$f_exp.$r1[2].$r_exp;
  6387. }
  6388. }
  6389. //去掉最后的字符
  6390. $returnstr=substr($returnstr,0,strlen($returnstr)-2);
  6391. return $returnstr;
  6392. }
  6393. //---------图片地址组合
  6394. function ReturnMorepicpath($smallpic,$bigpic,$picname,$delpicid,$picid,$add,$downurl,$down=0,$modtype=0,$fstb=1){
  6395. global $loginin,$logininid;
  6396. $f_exp="::::::";
  6397. $r_exp="\r\n";
  6398. $returnstr="";
  6399. $downurl=str_replace($f_exp,"",$downurl);
  6400. $downurl=str_replace($r_exp,"",$downurl);
  6401. $add[msavepic]=(int)$add[msavepic];
  6402. $add[classid]=(int)$add[classid];
  6403. $add[id]=(int)$add[id];
  6404. $add[filepass]=(int)$add[filepass];
  6405. $modtype=(int)$modtype;
  6406. $fstb=(int)$fstb;
  6407. $logininid=(int)$logininid;
  6408. $loginin=RepPostVar($loginin);
  6409. //增加信息
  6410. if(empty($down))
  6411. {
  6412. for($i=0;$i<count($smallpic);$i++)
  6413. {
  6414. $name=str_replace($f_exp,"",$picname[$i]);
  6415. $name=str_replace($r_exp,"",$name);
  6416. //替换非法字符
  6417. $spic=str_replace($f_exp,"",$smallpic[$i]);
  6418. $spic=str_replace($r_exp,"",$spic);
  6419. $spic=$spic?$downurl.$spic:'';
  6420. //保存图片
  6421. $smpr=SaveMorepicFile("msmallpfile",$add[msavepic],$i,$spic,$name,$add[classid],$add[id],$add,$modtype,$fstb);
  6422. $spic=$smpr[url];
  6423. //如没有大图的话跟缩略图一样
  6424. if(empty($bigpic[$i])&&!$_FILES['mbigpfile']['name'][$i])
  6425. {
  6426. $bpic=$spic;
  6427. }
  6428. else
  6429. {
  6430. $bpic=str_replace($f_exp,"",$bigpic[$i]);
  6431. $bpic=str_replace($r_exp,"",$bpic);
  6432. $bpic=$bpic?$downurl.$bpic:'';
  6433. //保存图片
  6434. $bmpr=SaveMorepicFile("mbigpfile",$add[msavepic],$i,$bpic,$name,$add[classid],$add[id],$add,$modtype,$fstb);
  6435. $bpic=$bmpr[url];
  6436. //生成缩图
  6437. if(empty($spic)&&$bpic&&$bmpr[tran]&&$add[mcreatespic])
  6438. {
  6439. $picno='[b]'.($name?$name:$bmpr[filename]);
  6440. $sfiler=GetMySmallImg($add['classid'],$picno,$bmpr[insertfile],$bmpr[filepath],$bmpr[yname],$add[mcreatespicwidth],$add[mcreatespicheight],$bmpr[name],$add['filepass'],$add['filepass'],$logininid,$loginin,$modtype,$fstb);
  6441. $spic=str_replace("/".$bmpr[filename],"/small".$bmpr[insertfile].$sfiler['filetype'],$bmpr[url]);
  6442. }
  6443. }
  6444. if(empty($spic))
  6445. {
  6446. $spic=$bpic;
  6447. }
  6448. if($spic)
  6449. {$returnstr.=$spic.$f_exp.$bpic.$f_exp.$name.$r_exp;}
  6450. }
  6451. }
  6452. //修改信息
  6453. else
  6454. {
  6455. for($i=0;$i<count($smallpic);$i++)
  6456. {
  6457. //删除地址
  6458. $del=0;
  6459. for($j=0;$j<count($delpicid);$j++)
  6460. {
  6461. if($delpicid[$j]==$picid[$i])
  6462. {$del=1;}
  6463. }
  6464. if($del)
  6465. {continue;}
  6466. $name=str_replace($f_exp,"",$picname[$i]);
  6467. $name=str_replace($r_exp,"",$name);
  6468. //替换非法字符
  6469. $spic=str_replace($f_exp,"",$smallpic[$i]);
  6470. $spic=str_replace($r_exp,"",$spic);
  6471. $spic=$spic?$downurl.$spic:'';
  6472. //保存图片
  6473. $smpr=SaveMorepicFile("msmallpfile",$add[msavepic],$i,$spic,$name,$add[classid],$add[id],$add,$modtype,$fstb);
  6474. $spic=$smpr[url];
  6475. //如没有大图的话跟缩略图一样
  6476. if(empty($bigpic[$i])&&!$_FILES['mbigpfile']['name'][$i])
  6477. {
  6478. $bpic=$spic;
  6479. }
  6480. else
  6481. {
  6482. $bpic=str_replace($f_exp,"",$bigpic[$i]);
  6483. $bpic=str_replace($r_exp,"",$bpic);
  6484. $bpic=$bpic?$downurl.$bpic:'';
  6485. //保存图片
  6486. $bmpr=SaveMorepicFile("mbigpfile",$add[msavepic],$i,$bpic,$name,$add[classid],$add[id],$add,$modtype,$fstb);
  6487. $bpic=$bmpr[url];
  6488. //生成缩图
  6489. if(empty($spic)&&$bpic&&$bmpr[tran]&&$add[mcreatespic])
  6490. {
  6491. $picno='[b]'.($name?$name:$bmpr[filename]);
  6492. $sfiler=GetMySmallImg($add['classid'],$picno,$bmpr[insertfile],$bmpr[filepath],$bmpr[yname],$add[mcreatespicwidth],$add[mcreatespicheight],$bmpr[name],$add['filepass'],$add['filepass'],$logininid,$loginin,$modtype,$fstb);
  6493. $spic=str_replace("/".$bmpr[filename],"/small".$bmpr[insertfile].$sfiler['filetype'],$bmpr[url]);
  6494. }
  6495. }
  6496. if(empty($spic))
  6497. {
  6498. $spic=$bpic;
  6499. }
  6500. if($spic)
  6501. {$returnstr.=$spic.$f_exp.$bpic.$f_exp.$name.$r_exp;}
  6502. }
  6503. }
  6504. //去掉最后的字符
  6505. $returnstr=substr($returnstr,0,strlen($returnstr)-2);
  6506. return $returnstr;
  6507. }
  6508. //---------下载地址组合
  6509. function ReturnDownpath($downname,$downpath,$delpathid,$pathid,$downuser,$fen,$thedownqz,$add,$foruser,$downurl,$down=0){
  6510. $f_exp="::::::";
  6511. $r_exp="\r\n";
  6512. $returnstr="";
  6513. $downurl=str_replace($f_exp,"",$downurl);
  6514. $downurl=str_replace($r_exp,"",$downurl);
  6515. //增加软件
  6516. if(empty($down))
  6517. {
  6518. for($i=0;$i<count($downname);$i++)
  6519. {
  6520. //替换非法字符
  6521. $name=str_replace($f_exp,"",$downname[$i]);
  6522. $name=str_replace($r_exp,"",$name);
  6523. $path=str_replace($f_exp,"",$downpath[$i]);
  6524. $path=str_replace($r_exp,"",$path);
  6525. //批量更换权限
  6526. if($add[doforuser])
  6527. {
  6528. if(empty($foruser))
  6529. {
  6530. $foruser=0;
  6531. }
  6532. $fuser=$foruser;
  6533. }
  6534. else
  6535. {
  6536. if(empty($downuser[$i]))
  6537. {
  6538. $fuser=0;
  6539. }
  6540. else
  6541. {
  6542. $fuser=$downuser[$i];
  6543. }
  6544. }
  6545. //批量更新点数
  6546. if($add[dodownfen])
  6547. {
  6548. if(empty($add[downfen]))
  6549. {
  6550. $add[downfen]=0;
  6551. }
  6552. $ffen=$add[downfen];
  6553. }
  6554. else
  6555. {
  6556. if(empty($fen[$i]))
  6557. {
  6558. $ffen=0;
  6559. }
  6560. else
  6561. {
  6562. $ffen=$fen[$i];
  6563. }
  6564. }
  6565. $downqz=$thedownqz[$i];
  6566. if($path&&$name)
  6567. {$returnstr.=$name.$f_exp.$downurl.$path.$f_exp.$fuser.$f_exp.$ffen.$f_exp.$downqz.$r_exp;}
  6568. }
  6569. }
  6570. //修改软件
  6571. else
  6572. {
  6573. for($i=0;$i<count($downname);$i++)
  6574. {
  6575. //删除下载地址
  6576. $del=0;
  6577. for($j=0;$j<count($delpathid);$j++)
  6578. {
  6579. if($delpathid[$j]==$pathid[$i])
  6580. {$del=1;}
  6581. }
  6582. if($del)
  6583. {continue;}
  6584. //替换非法字符
  6585. $name=str_replace($f_exp,"",$downname[$i]);
  6586. $name=str_replace($r_exp,"",$name);
  6587. $path=str_replace($f_exp,"",$downpath[$i]);
  6588. $path=str_replace($r_exp,"",$path);
  6589. //批量更换权限
  6590. if($add[doforuser])
  6591. {
  6592. if(empty($foruser))
  6593. {
  6594. $foruser=0;
  6595. }
  6596. $fuser=$foruser;
  6597. }
  6598. else
  6599. {
  6600. if(empty($downuser[$i]))
  6601. {
  6602. $fuser=0;
  6603. }
  6604. else
  6605. {
  6606. $fuser=$downuser[$i];
  6607. }
  6608. }
  6609. //批量更新点数
  6610. if($add[dodownfen])
  6611. {
  6612. if(empty($add[downfen]))
  6613. {
  6614. $add[downfen]=0;
  6615. }
  6616. $ffen=$add[downfen];
  6617. }
  6618. else
  6619. {
  6620. if(empty($fen[$i]))
  6621. {
  6622. $ffen=0;
  6623. }
  6624. else
  6625. {
  6626. $ffen=$fen[$i];
  6627. }
  6628. }
  6629. $downqz=$thedownqz[$i];
  6630. if($path&&$name)
  6631. {$returnstr.=$name.$f_exp.$downurl.$path.$f_exp.$fuser.$f_exp.$ffen.$f_exp.$downqz.$r_exp;}
  6632. }
  6633. }
  6634. //去掉最后的字符
  6635. $returnstr=substr($returnstr,0,strlen($returnstr)-2);
  6636. return $returnstr;
  6637. }
  6638. //-------------- 缓存区 ----------------------
  6639. //一级栏目导航
  6640. function GetClassNavCache($line,$navfh){
  6641. global $empire,$dbtbpre,$public_r;
  6642. $limit='';
  6643. if($line)
  6644. {
  6645. $limit=" limit ".$line;
  6646. }
  6647. $navs='';
  6648. $fh='';
  6649. $sql=$empire->query("select classid,classname,wburl,listdt,classurl,classpath from {$dbtbpre}enewsclass where bclassid=0 and showclass=0 order by myorder,classid".$limit);
  6650. while($r=$empire->fetch($sql))
  6651. {
  6652. $classurl=sys_ReturnBqClassUrl($r);
  6653. if($navs)
  6654. {
  6655. $fh=$navfh;
  6656. }
  6657. $navs.=$fh."<a href=\"".$classurl."\">".$r[classname]."</a>";
  6658. }
  6659. return $navs;
  6660. }
  6661. //生成配置文件
  6662. function GetConfig($domod=0){
  6663. $filename=eReturnTrueEcmsPath()."e/config/config.php";
  6664. $exp='//-------EmpireCMS.Public.Cache-------';
  6665. $text=ReadFiletext($filename);
  6666. $r=explode($exp,$text);
  6667. if($r[0]=='')
  6668. {
  6669. return false;
  6670. }
  6671. $r[1]=GetPubCache();
  6672. if($domod==1)
  6673. {
  6674. $r[2]=GetModCache();
  6675. }
  6676. $setting=$r[0].$exp.$r[1].$exp.$r[2].$exp.$r[3];
  6677. WriteFiletext_n($filename,$setting);
  6678. }
  6679. //更新公共缓存
  6680. function GetPubCache(){
  6681. global $empire,$dbtbpre;
  6682. //扩展变量
  6683. $pvstring='';
  6684. $pvsql=$empire->query("select myvar,varvalue from {$dbtbpre}enewspubvar where tocache=1");
  6685. while($pvr=$empire->fetch($pvsql))
  6686. {
  6687. $pvstring.=",'add_".$pvr['myvar']."'=>'".addslashes($pvr['varvalue'])."'";
  6688. }
  6689. //多访问端
  6690. $ckhavemoreport=0;
  6691. $mpnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmoreport");
  6692. if($mpnum>1)
  6693. {
  6694. $ckhavemoreport=1;
  6695. }
  6696. //公共变量
  6697. $r=$empire->fetch1("select * from {$dbtbpre}enewspublic limit 1");
  6698. $tr=$empire->fetch1("select downsofttemp,onlinemovietemp,listpagetemp from ".GetTemptb("enewspubtemp")." limit 1");
  6699. $fsr=$empire->fetch1("select purl from {$dbtbpre}enewspostserver where ptype=1 limit 1");
  6700. $plr=$empire->fetch1("select * from {$dbtbpre}enewspl_set limit 1");
  6701. $paddr=$empire->fetch1("select * from {$dbtbpre}enewspublicadd limit 1");
  6702. $agcacher=eGetCacheMAdmin();
  6703. $memberconnectnum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmember_connect_app where isclose=0");
  6704. $GLOBALS['public_r']['newsurl']=$r['newsurl'];
  6705. $r[filedeftb]=1;
  6706. $plr[pldeftb]=1;
  6707. $classnavs=GetClassNavCache($r[classnavline],$r[classnavfh]);
  6708. $checkdorepstr=ReturnCheckDoRep();
  6709. $setting.="
  6710. //------------e_public
  6711. \$public_r=array('sitename'=>'".addslashes($r[sitename])."',
  6712. 'newsurl'=>'".addslashes($r[newsurl])."',
  6713. 'filetype'=>'".addslashes($r[filetype])."',
  6714. 'filesize'=>".$r[filesize].",
  6715. 'relistnum'=>".$r[relistnum].",
  6716. 'renewsnum'=>".$r[renewsnum].",
  6717. 'min_keyboard'=>".$r[min_keyboard].",
  6718. 'max_keyboard'=>".$r[max_keyboard].",
  6719. 'search_num'=>".$r[search_num].",
  6720. 'search_pagenum'=>".$r[search_pagenum].",
  6721. 'newslink'=>".$r[newslink].",
  6722. 'checked'=>".$r[checked].",
  6723. 'searchtime'=>".$r[searchtime].",
  6724. 'loginnum'=>".$r[loginnum].",
  6725. 'logintime'=>".$r[logintime].",
  6726. 'addnews_ok'=>".$r[addnews_ok].",
  6727. 'register_ok'=>".$r[register_ok].",
  6728. 'indextype'=>'".addslashes($r[indextype])."',
  6729. 'goodlencord'=>".$r[goodlencord].",
  6730. 'goodtype'=>'".addslashes($r[goodtype])."',
  6731. 'searchtype'=>'".addslashes($r[searchtype])."',
  6732. 'exittime'=>".$r[exittime].",
  6733. 'smalltextlen'=>".$r[smalltextlen].",
  6734. 'defaultgroupid'=>".$r[defaultgroupid].",
  6735. 'fileurl'=>'".addslashes($r[fileurl])."',
  6736. 'install'=>".$r[install].",
  6737. 'phpmode'=>".$r[phpmode].",
  6738. 'dorepnum'=>".$r[dorepnum].",
  6739. 'loadtempnum'=>".$r[loadtempnum].",
  6740. 'bakdbpath'=>'".addslashes($r[bakdbpath])."',
  6741. 'bakdbzip'=>'".addslashes($r[bakdbzip])."',
  6742. 'downpass'=>'".addslashes($r[downpass])."',
  6743. 'filechmod'=>".$r[filechmod].",
  6744. 'loginkey_ok'=>".$r[loginkey_ok].",
  6745. 'tbname'=>'".addslashes($r[tbname])."',
  6746. 'limittype'=>".$r[limittype].",
  6747. 'redodown'=>".$r[redodown].",
  6748. 'downsofttemp'=>'".addslashes(stripSlashes($tr[downsofttemp]))."',
  6749. 'onlinemovietemp'=>'".addslashes(stripSlashes($tr[onlinemovietemp]))."',
  6750. 'lctime'=>".$r[lctime].",
  6751. 'candocode'=>".$r[candocode].",
  6752. 'opennotcj'=>".$r[opennotcj].",
  6753. 'listpagetemp'=>'".addslashes(stripSlashes($tr[listpagetemp]))."',
  6754. 'reuserpagenum'=>".$r[reuserpagenum].",
  6755. 'revotejsnum'=>".$r[revotejsnum].",
  6756. 'readjsnum'=>".$r[readjsnum].",
  6757. 'qaddtran'=>".$r[qaddtran].",
  6758. 'qaddtransize'=>".$r[qaddtransize].",
  6759. 'ebakthisdb'=>".$r[ebakthisdb].",
  6760. 'delnewsnum'=>".$r[delnewsnum].",
  6761. 'markpos'=>".$r[markpos].",
  6762. 'markimg'=>'".addslashes($r[markimg])."',
  6763. 'marktext'=>'".addslashes($r[marktext])."',
  6764. 'markfontsize'=>'".addslashes($r[markfontsize])."',
  6765. 'markfontcolor'=>'".addslashes($r[markfontcolor])."',
  6766. 'markfont'=>'".addslashes($r[markfont])."',
  6767. 'adminloginkey'=>".$r[adminloginkey].",
  6768. 'php_outtime'=>".$r[php_outtime].",
  6769. 'listpagefun'=>'".addslashes($r[listpagefun])."',
  6770. 'textpagefun'=>'".addslashes($r[textpagefun])."',
  6771. 'adfile'=>'".addslashes($r[adfile])."',
  6772. 'notsaveurl'=>'".addslashes($r[notsaveurl])."',
  6773. 'rssnum'=>".$r[rssnum].",
  6774. 'rsssub'=>".$r[rsssub].",
  6775. 'savetxtf'=>'".addslashes($r[savetxtf])."',
  6776. 'dorepdlevelnum'=>".$r[dorepdlevelnum].",
  6777. 'listpagelistfun'=>'".addslashes($r[listpagelistfun])."',
  6778. 'listpagelistnum'=>".$r[listpagelistnum].",
  6779. 'infolinknum'=>".$r[infolinknum].",
  6780. 'searchgroupid'=>".$r[searchgroupid].",
  6781. 'opencopytext'=>".$r[opencopytext].",
  6782. 'reuserjsnum'=>".$r[reuserjsnum].",
  6783. 'reuserlistnum'=>".$r[reuserlistnum].",
  6784. 'opentitleurl'=>".$r[opentitleurl].",
  6785. 'searchtempvar'=>".$r[searchtempvar].",
  6786. 'showinfolevel'=>".$r[showinfolevel].",
  6787. 'navfh'=>'".addslashes($r[navfh])."',
  6788. 'spicwidth'=>".$r[spicwidth].",
  6789. 'spicheight'=>".$r[spicheight].",
  6790. 'spickill'=>".$r[spickill].",
  6791. 'jpgquality'=>".$r[jpgquality].",
  6792. 'markpct'=>".$r[markpct].",
  6793. 'redoview'=>".$r[redoview].",
  6794. 'reggetfen'=>".$r[reggetfen].",
  6795. 'regbooktime'=>".$r[regbooktime].",
  6796. 'revotetime'=>".$r[revotetime].",
  6797. 'fpath'=>".$r[fpath].",
  6798. 'filepath'=>'".addslashes($r[filepath])."',
  6799. 'nreclass'=>'".addslashes($r[nreclass])."',
  6800. 'nreinfo'=>'".addslashes($r[nreinfo])."',
  6801. 'nrejs'=>'".addslashes($r[nrejs])."',
  6802. 'nottobq'=>'".addslashes($r[nottobq])."',
  6803. 'defspacestyleid'=>".$r[defspacestyleid].",
  6804. 'canposturl'=>'".addslashes($r[canposturl])."',
  6805. 'openspace'=>".$r[openspace].",
  6806. 'defadminstyle'=>".$r[defadminstyle].",
  6807. 'realltime'=>".$r[realltime].",
  6808. 'closeip'=>'".addslashes($r[closeip])."',
  6809. 'openip'=>'".addslashes($r[openip])."',
  6810. 'hopenip'=>'".addslashes($r[hopenip])."',
  6811. 'textpagelistnum'=>".$r[textpagelistnum].",
  6812. 'memberlistlevel'=>".$r[memberlistlevel].",
  6813. 'ebakcanlistdb'=>".$r[ebakcanlistdb].",
  6814. 'keytog'=>".$r[keytog].",
  6815. 'keytime'=>".$r[keytime].",
  6816. 'keyrnd'=>'".addslashes($r[keyrnd])."',
  6817. 'checkdorepstr'=>'".addslashes($checkdorepstr)."',
  6818. 'regkey_ok'=>".$r[regkey_ok].",
  6819. 'opengetdown'=>".$r[opengetdown].",
  6820. 'gbkey_ok'=>".$r[gbkey_ok].",
  6821. 'fbkey_ok'=>".$r[fbkey_ok].",
  6822. 'newaddinfotime'=>".$r[newaddinfotime].",
  6823. 'classnavs'=>'".addslashes($classnavs)."',
  6824. 'adminstyle'=>'".addslashes($r[adminstyle])."',
  6825. 'docnewsnum'=>".$r[docnewsnum].",
  6826. 'openschall'=>".$r[openschall].",
  6827. 'schallfield'=>".$r[schallfield].",
  6828. 'schallminlen'=>".$r[schallminlen].",
  6829. 'schallmaxlen'=>".$r[schallmaxlen].",
  6830. 'schallnum'=>".$r[schallnum].",
  6831. 'schallpagenum'=>".$r[schallpagenum].",
  6832. 'dtcanbq'=>".$r[dtcanbq].",
  6833. 'dtcachetime'=>".$r[dtcachetime].",
  6834. 'repkeynum'=>".$r[repkeynum].",
  6835. 'regacttype'=>".$r[regacttype].",
  6836. 'opengetpass'=>".$r[opengetpass].",
  6837. 'hlistinfonum'=>".$r[hlistinfonum].",
  6838. 'qlistinfonum'=>".$r[qlistinfonum].",
  6839. 'dtncanbq'=>".$r[dtncanbq].",
  6840. 'dtncachetime'=>".$r[dtncachetime].",
  6841. 'readdinfotime'=>".$r[readdinfotime].",
  6842. 'qeditinfotime'=>".$r[qeditinfotime].",
  6843. 'onclicktype'=>".$r[onclicktype].",
  6844. 'onclickfilesize'=>".$r[onclickfilesize].",
  6845. 'onclickfiletime'=>".$r[onclickfiletime].",
  6846. 'schalltime'=>".$r[schalltime].",
  6847. 'defprinttempid'=>".$r[defprinttempid].",
  6848. 'opentags'=>".$r[opentags].",
  6849. 'tagstempid'=>".$r[tagstempid].",
  6850. 'usetags'=>'".addslashes($r[usetags])."',
  6851. 'chtags'=>'".addslashes($r[chtags])."',
  6852. 'tagslistnum'=>".$r[tagslistnum].",
  6853. 'closeqdt'=>".$r[closeqdt].",
  6854. 'settop'=>".$r[settop].",
  6855. 'qlistinfomod'=>".$r[qlistinfomod].",
  6856. 'gb_num'=>".$r[gb_num].",
  6857. 'member_num'=>".$r[member_num].",
  6858. 'space_num'=>".$r[space_num].",
  6859. 'infolday'=>".$r[infolday].",
  6860. 'filelday'=>".$r[filelday].",
  6861. 'dorepkey'=>".$r[dorepkey].",
  6862. 'dorepword'=>".$r[dorepword].",
  6863. 'onclickrnd'=>'".addslashes($r[onclickrnd])."',
  6864. 'indexpagedt'=>".$r[indexpagedt].",
  6865. 'keybgcolor'=>'".addslashes($r[keybgcolor])."',
  6866. 'keyfontcolor'=>'".addslashes($r[keyfontcolor])."',
  6867. 'keydistcolor'=>'".addslashes($r[keydistcolor])."',
  6868. 'indexpageid'=>".$r[indexpageid].",
  6869. 'closeqdtmsg'=>'".addslashes($r[closeqdtmsg])."',
  6870. 'openfileserver'=>".$r[openfileserver].",
  6871. 'fs_purl'=>'".addslashes($fsr[purl])."',
  6872. 'closemods'=>'".addslashes($r[closemods])."',
  6873. 'fieldandtop'=>".$r[fieldandtop].",
  6874. 'fieldandclosetb'=>'".addslashes($r[fieldandclosetb])."',
  6875. 'filedatatbs'=>'".addslashes($r[filedatatbs])."',
  6876. 'filedeftb'=>".$r[filedeftb].",
  6877. 'pldeftb'=>".$plr[pldeftb].",
  6878. 'plurl'=>'".addslashes($plr[plurl])."',
  6879. 'plkey_ok'=>".$plr[plkey_ok].",
  6880. 'plface'=>'".addslashes($plr[plface])."',
  6881. 'plf'=>'".addslashes($plr[plf])."',
  6882. 'pldatatbs'=>'".addslashes($plr[pldatatbs])."',
  6883. 'defpltempid'=>".$plr[defpltempid].",
  6884. 'pl_num'=>".$plr[pl_num].",
  6885. 'plgroupid'=>".$plr[plgroupid].",
  6886. 'closelisttemp'=>'".addslashes($r[closelisttemp])."',
  6887. 'chclasscolor'=>'".addslashes($r[chclasscolor])."',
  6888. 'timeclose'=>'".addslashes($r[timeclose])."',
  6889. 'timeclosedo'=>'".addslashes($r[timeclosedo])."',
  6890. 'ipaddinfonum'=>".$r[ipaddinfonum].",
  6891. 'ipaddinfotime'=>".$r[ipaddinfotime].",
  6892. 'rewriteinfo'=>'".addslashes($r[rewriteinfo])."',
  6893. 'rewriteclass'=>'".addslashes($r[rewriteclass])."',
  6894. 'rewriteinfotype'=>'".addslashes($r[rewriteinfotype])."',
  6895. 'rewritetags'=>'".addslashes($r[rewritetags])."',
  6896. 'rewritepl'=>'".addslashes($r[rewritepl])."',
  6897. 'memberconnectnum'=>".$memberconnectnum.",
  6898. 'closehmenu'=>'".addslashes($r[closehmenu])."',
  6899. 'indexaddpage'=>".$r[indexaddpage].",
  6900. 'modmemberedittran'=>".$r[modmemberedittran].",
  6901. 'modinfoedittran'=>".$r[modinfoedittran].",
  6902. 'php_adminouttime'=>".$r[php_adminouttime].",
  6903. 'httptype'=>".$r[httptype].",
  6904. 'qinfoaddfen'=>".$r[qinfoaddfen].",
  6905. 'bakescapetype'=>".$r[bakescapetype].",
  6906. 'hkeytime'=>".$r[hkeytime].",
  6907. 'hkeyrnd'=>'".addslashes($r[hkeyrnd])."',
  6908. 'mhavedatedo'=>".$r[mhavedatedo].",
  6909. 'reportkey'=>".$r[reportkey].",
  6910. 'ctimeopen'=>".$paddr[ctimeopen].",
  6911. 'ctimelast'=>".$paddr[ctimelast].",
  6912. 'ctimeindex'=>".$paddr[ctimeindex].",
  6913. 'ctimeclass'=>".$paddr[ctimeclass].",
  6914. 'ctimelist'=>".$paddr[ctimelist].",
  6915. 'ctimetext'=>".$paddr[ctimetext].",
  6916. 'ctimett'=>".$paddr[ctimett].",
  6917. 'ctimetags'=>".$paddr[ctimetags].",
  6918. 'ctimegids'=>'".addslashes($paddr[ctimegids])."',
  6919. 'ctimecids'=>'".addslashes($paddr[ctimecids])."',
  6920. 'ctimernd'=>'".addslashes($paddr[ctimernd])."',
  6921. 'qmadminuids'=>'".addslashes($agcacher[qmadminuids])."',
  6922. 'qmforumuids'=>'".addslashes($agcacher[qmforumuids])."',
  6923. 'qmotheruids'=>'".addslashes($agcacher[qmotheruids])."',
  6924. 'ckhavemoreport'=>".$ckhavemoreport.",
  6925. 'usetotalnum'=>".$r[usetotalnum].",
  6926. 'autodoopen'=>".$paddr[autodoopen].",
  6927. 'autodofile'=>".$paddr[autodofile].",
  6928. 'autodoss'=>".$paddr[autodoss].",
  6929. 'digglevel'=>".$paddr[digglevel].",
  6930. 'diggcmids'=>'".addslashes($paddr[diggcmids])."',
  6931. 'spacegids'=>'".addslashes($r[spacegids])."',
  6932. 'candocodetag'=>".$r[candocodetag].",
  6933. 'openern'=>'".addslashes($r[openern])."',
  6934. 'ernurl'=>'".addslashes($r[ernurl])."',
  6935. 'toqjf'=>'".addslashes($paddr[toqjf])."',
  6936. 'qtoqjf'=>'".addslashes($paddr[qtoqjf])."',
  6937. 'ctimeaddre'=>".$paddr[ctimeaddre].",
  6938. 'ctimeqaddre'=>".$paddr[ctimeqaddre].",
  6939. 'deftempid'=>".$r[deftempid].$pvstring.");
  6940. //------------e_public
  6941. ".GetMoreportCache()."
  6942. ";
  6943. return $setting;
  6944. }
  6945. //更新模型缓存
  6946. function GetModCache(){
  6947. global $empire,$dbtbpre;
  6948. //数据表
  6949. $tablesql=$empire->query("select tbname,deftb,yhid,mid,intb from {$dbtbpre}enewstable");
  6950. while($tabler=$empire->fetch($tablesql))
  6951. {
  6952. $tables.="\$etable_r['".$tabler[tbname]."']=Array('deftb'=>'".addslashes($tabler[deftb])."',
  6953. 'yhid'=>".$tabler[yhid].",
  6954. 'intb'=>".$tabler[intb].",
  6955. 'mid'=>".$tabler[mid].");
  6956. ";
  6957. }
  6958. //系统模型
  6959. $alllinkfields='|';//关联同步
  6960. $modsql=$empire->query("select * from {$dbtbpre}enewsmod");
  6961. while($mr=$empire->fetch($modsql))
  6962. {
  6963. $listtempf=doReturnAddTempf($mr['listtempvar']);//列表模板
  6964. $texttempf=doReturnAddTempf($mr['tempvar']);//内容模板
  6965. $enter=doReturnAddTempf($mr['enter']);//录入项
  6966. $qenter=doReturnAddTempf($mr['qenter']);//投稿项
  6967. $cj=doReturnAddTempf($mr['cj']);//采集项
  6968. //表字段
  6969. $mainf=',';//主表字段
  6970. $dataf=',';//副表字段
  6971. $tobrf=',';//回车字段
  6972. $dohtmlf=',';//html字段
  6973. $savetxtf='';//存文本字段
  6974. $pagef='';//分页字段
  6975. $smalltextf=',';//简介字段
  6976. $checkboxf=',';//复选框字段
  6977. $filef=',';//附件字段
  6978. $imgf=',';//图片字段
  6979. $flashf=',';//FLASH字段
  6980. $onlyf=',';//唯一字段
  6981. $linkfields='|';//关联同步
  6982. $morevaluef='|';//多值字段
  6983. $editorf=',';//编辑器字段
  6984. $ubbeditorf=',';//UBB编辑器字段
  6985. $adddofunf='||';//增加处理函数
  6986. $editdofunf='||';//修改处理函数
  6987. $qadddofunf='||';//投稿增加处理函数
  6988. $qeditdofunf='||';//投稿修改处理函数
  6989. $fsql=$empire->query("select * from {$dbtbpre}enewsf where tid='$mr[tid]'");
  6990. while($fr=$empire->fetch($fsql))
  6991. {
  6992. if($fr['tbdataf'])
  6993. {
  6994. $dataf.=$fr['f'].',';
  6995. }
  6996. elseif($fr['f']!='special.field')
  6997. {
  6998. $mainf.=$fr['f'].',';
  6999. }
  7000. if($fr['tobr'])
  7001. {
  7002. $tobrf.=$fr['f'].',';
  7003. }
  7004. if($fr['dohtml'])
  7005. {
  7006. $dohtmlf.=$fr['f'].',';
  7007. }
  7008. if($fr['savetxt'])
  7009. {
  7010. $savetxtf=$fr['f'];
  7011. }
  7012. if($fr['ispage'])
  7013. {
  7014. $pagef=$fr['f'];
  7015. }
  7016. if($fr['issmalltext'])
  7017. {
  7018. $smalltextf.=$fr['f'].',';
  7019. }
  7020. if($fr['fform']=='checkbox')
  7021. {
  7022. $checkboxf.=$fr['f'].',';
  7023. }
  7024. if($fr['fform']=='file')
  7025. {
  7026. $filef.=$fr['f'].',';
  7027. }
  7028. if($fr['fform']=='img')
  7029. {
  7030. $imgf.=$fr['f'].',';
  7031. }
  7032. if($fr['fform']=='flash')
  7033. {
  7034. $flashf.=$fr['f'].',';
  7035. }
  7036. if($fr['isonly'])
  7037. {
  7038. $onlyf.=$fr['f'].',';
  7039. }
  7040. if(($fr['fform']=='linkfield'||$fr['fform']=='linkfieldselect')&&$fr['samedata']&&$fr['linkfieldval'])
  7041. {
  7042. $linkfields.=$fr[f].','.$fr[linkfieldtb].'.'.$fr[linkfieldval].'|';
  7043. $alllinkfields.=$fr[tbname].'.'.$fr[f].','.$fr[linkfieldtb].'.'.$fr[linkfieldval].'|';
  7044. }
  7045. if($fr['fform']=='morevaluefield')
  7046. {
  7047. $morevaluef.=$fr[f].','.$fr[fmvnum].'|';
  7048. }
  7049. if($fr['fform']=='editor')
  7050. {
  7051. $editorf.=$fr['f'].',';
  7052. }
  7053. if($fr['fform']=='ubbeditor')
  7054. {
  7055. $ubbeditorf.=$fr['f'].',';
  7056. }
  7057. if($fr['adddofun'])
  7058. {
  7059. $adddofunf.=$fr[f].'!#!'.$fr[adddofun].'||';
  7060. }
  7061. if($fr['editdofun'])
  7062. {
  7063. $editdofunf.=$fr[f].'!#!'.$fr[editdofun].'||';
  7064. }
  7065. if($fr['qadddofun'])
  7066. {
  7067. $qadddofunf.=$fr[f].'!#!'.$fr[qadddofun].'||';
  7068. }
  7069. if($fr['qeditdofun'])
  7070. {
  7071. $qeditdofunf.=$fr[f].'!#!'.$fr[qeditdofun].'||';
  7072. }
  7073. }
  7074. //表数据
  7075. $tr=$empire->fetch1("select * from {$dbtbpre}enewstable where tid='$mr[tid]'");
  7076. //字符
  7077. $mods.="\$emod_r[".$mr[mid]."]=Array('mid'=>".$mr[mid].",
  7078. 'mname'=>'".addslashes($mr[mname])."',
  7079. 'qmname'=>'".addslashes($mr[qmname])."',
  7080. 'defaulttb'=>".$tr[isdefault].",
  7081. 'datatbs'=>'".addslashes($tr[datatbs])."',
  7082. 'deftb'=>'".addslashes($tr[deftb])."',
  7083. 'enter'=>'".addslashes($enter)."',
  7084. 'qenter'=>'".addslashes($qenter)."',
  7085. 'listtempf'=>'".addslashes($listtempf)."',
  7086. 'tempf'=>'".addslashes($texttempf)."',
  7087. 'mustqenterf'=>'".addslashes($mr[mustqenterf])."',
  7088. 'listandf'=>'".addslashes($mr[listandf])."',
  7089. 'setandf'=>".$mr[setandf].",
  7090. 'searchvar'=>'".addslashes($mr[searchvar])."',
  7091. 'cj'=>'".addslashes($cj)."',
  7092. 'canaddf'=>'".addslashes($mr[canaddf])."',
  7093. 'caneditf'=>'".addslashes($mr[caneditf])."',
  7094. 'tbmainf'=>'".addslashes($mainf)."',
  7095. 'tbdataf'=>'".addslashes($dataf)."',
  7096. 'tobrf'=>'".addslashes($tobrf)."',
  7097. 'dohtmlf'=>'".addslashes($dohtmlf)."',
  7098. 'checkboxf'=>'".addslashes($checkboxf)."',
  7099. 'savetxtf'=>'".addslashes($savetxtf)."',
  7100. 'editorf'=>'".addslashes($editorf)."',
  7101. 'ubbeditorf'=>'".addslashes($ubbeditorf)."',
  7102. 'pagef'=>'".addslashes($pagef)."',
  7103. 'smalltextf'=>'".addslashes($smalltextf)."',
  7104. 'filef'=>'".addslashes($filef)."',
  7105. 'imgf'=>'".addslashes($imgf)."',
  7106. 'flashf'=>'".addslashes($flashf)."',
  7107. 'linkfields'=>'".addslashes($linkfields)."',
  7108. 'morevaluef'=>'".addslashes($morevaluef)."',
  7109. 'onlyf'=>'".addslashes($onlyf)."',
  7110. 'adddofunf'=>'".addslashes($adddofunf)."',
  7111. 'editdofunf'=>'".addslashes($editdofunf)."',
  7112. 'qadddofunf'=>'".addslashes($qadddofunf)."',
  7113. 'qeditdofunf'=>'".addslashes($qeditdofunf)."',
  7114. 'definfovoteid'=>".$mr[definfovoteid].",
  7115. 'orderf'=>'".addslashes($mr[orderf])."',
  7116. 'sonclass'=>'".addslashes($mr[sonclass])."',
  7117. 'maddfun'=>'".addslashes($mr['maddfun'])."',
  7118. 'meditfun'=>'".addslashes($mr['meditfun'])."',
  7119. 'qmaddfun'=>'".addslashes($mr['qmaddfun'])."',
  7120. 'qmeditfun'=>'".addslashes($mr['qmeditfun'])."',
  7121. 'tid'=>".$mr[tid].",
  7122. 'tbname'=>'".addslashes($mr[tbname])."');
  7123. ";
  7124. }
  7125. $mods="
  7126. \$emod_pubr=Array('linkfields'=>'".addslashes($alllinkfields)."');
  7127. \$etable_r=array();
  7128. ".$tables."
  7129. \$emod_r=array();
  7130. ".$mods."
  7131. ";
  7132. return $mods;
  7133. }
  7134. //返回会员管理组
  7135. function eGetCacheMAdmin(){
  7136. global $empire,$dbtbpre;
  7137. $qmr=array();
  7138. $qmr['qmadminuids']='';
  7139. $qmr['qmforumuids']='';
  7140. $qmr['qmotheruids']='';
  7141. //缓存
  7142. $agcache='';
  7143. $qmsql=$empire->query("select * from {$dbtbpre}enewsag");
  7144. while($r=$empire->fetch($qmsql))
  7145. {
  7146. if($r['isadmin']==9)//管理员
  7147. {
  7148. if($r['auids'])
  7149. {
  7150. $qmr['qmadminuids']=$qmr['qmadminuids']?substr($r['auids'],0,-1).$qmr['qmadminuids']:$r['auids'];
  7151. }
  7152. }
  7153. elseif($r['isadmin']>=5)//版主
  7154. {
  7155. if($r['auids'])
  7156. {
  7157. $qmr['qmforumuids']=$qmr['qmforumuids']?substr($r['auids'],0,-1).$qmr['qmforumuids']:$r['auids'];
  7158. }
  7159. }
  7160. elseif($r['isadmin']>=1)//实习版主
  7161. {
  7162. if($r['auids'])
  7163. {
  7164. $qmr['qmotheruids']=$qmr['qmotheruids']?substr($r['auids'],0,-1).$qmr['qmotheruids']:$r['auids'];
  7165. }
  7166. }
  7167. else
  7168. {
  7169. }
  7170. //缓存
  7171. $agcache.="\$aglevel_r[".$r['agid']."]=Array('agid'=>".$r['agid'].",
  7172. 'agname'=>'".addslashes($r['agname'])."',
  7173. 'isadmin'=>".$r['isadmin'].");
  7174. ";
  7175. }
  7176. $agcache="
  7177. \$aglevel_r=array();
  7178. ".$agcache."
  7179. ";
  7180. $qmr['agcache']=$agcache;
  7181. return $qmr;
  7182. }
  7183. //返回会员内部组
  7184. function eGetCacheMInGroup(){
  7185. global $empire,$dbtbpre;
  7186. //缓存
  7187. $igcache='';
  7188. $sql=$empire->query("select * from {$dbtbpre}enewsingroup");
  7189. while($r=$empire->fetch($sql))
  7190. {
  7191. //缓存
  7192. $igcache.="\$iglevel_r[".$r['gid']."]=Array('gid'=>".$r['gid'].",
  7193. 'gname'=>'".addslashes($r['gname'])."');
  7194. ";
  7195. }
  7196. $igcache="
  7197. \$iglevel_r=array();
  7198. ".$igcache."
  7199. ";
  7200. return $igcache;
  7201. }
  7202. //会员组缓存
  7203. function GetMemberLevel(){
  7204. global $empire,$dbtbpre;
  7205. $file=eReturnTrueEcmsPath()."e/data/dbcache/MemberLevel.php";
  7206. $sql=$empire->query("select * from {$dbtbpre}enewsmembergroup order by groupid");
  7207. while($r=$empire->fetch($sql))
  7208. {
  7209. $levels.="\$level_r[".$r[groupid]."]=Array('groupid'=>".$r[groupid].",
  7210. 'groupname'=>'".addslashes($r[groupname])."',
  7211. 'level'=>".$r[level].",
  7212. 'checked'=>".$r[checked].",
  7213. 'favanum'=>".$r[favanum].",
  7214. 'daydown'=>".$r[daydown].",
  7215. 'msglen'=>".$r[msglen].",
  7216. 'regchecked'=>".$r[regchecked].",
  7217. 'spacestyleid'=>".$r[spacestyleid].",
  7218. 'dayaddinfo'=>".$r[dayaddinfo].",
  7219. 'infochecked'=>".$r[infochecked].",
  7220. 'plchecked'=>".$r[plchecked].",
  7221. 'msgnum'=>".$r[msgnum].");
  7222. ";
  7223. }
  7224. //管理组
  7225. $agcacher=eGetCacheMAdmin();
  7226. //内部组
  7227. $igcache=eGetCacheMInGroup();
  7228. $levels="<?php
  7229. //level
  7230. \$level_r=array();
  7231. ".$levels.$agcacher['agcache'].$igcache."
  7232. //level
  7233. ?>";
  7234. WriteFiletext_n($file,$levels);
  7235. }
  7236. //优化缓存
  7237. function GetYh(){
  7238. global $empire,$dbtbpre;
  7239. $sql=$empire->query("select * from {$dbtbpre}enewsyh");
  7240. while($r=$empire->fetch($sql))
  7241. {
  7242. $yhs.="\$eyh_r[".$r[id]."]=Array('id'=>".$r[id].",
  7243. 'hlist'=>".$r[hlist].",
  7244. 'qlist'=>".$r[qlist].",
  7245. 'bqnew'=>".$r[bqnew].",
  7246. 'bqhot'=>".$r[bqhot].",
  7247. 'bqpl'=>".$r[bqpl].",
  7248. 'bqgood'=>".$r[bqgood].",
  7249. 'bqfirst'=>".$r[bqfirst].",
  7250. 'qmlist'=>".$r[qmlist].",
  7251. 'dobq'=>".$r[dobq].",
  7252. 'dojs'=>".$r[dojs].",
  7253. 'dosbq'=>".$r[dosbq].",
  7254. 'rehtml'=>".$r[rehtml].",
  7255. 'otherlink'=>".$r[otherlink].",
  7256. 'bqdown'=>".$r[bqdown].");
  7257. ";
  7258. }
  7259. $yhs="
  7260. ".$yhs."
  7261. ";
  7262. return $yhs;
  7263. }
  7264. //返回字段缓存
  7265. function ReturnEmptyFCache($f,$val,$isint=0){
  7266. $str='';
  7267. if($val)
  7268. {
  7269. if($isint)
  7270. {
  7271. $str="'".$f."'=>".$val.",";
  7272. }
  7273. else
  7274. {
  7275. $str="'".$f."'=>'".addslashes($val)."',";
  7276. }
  7277. }
  7278. return $str;
  7279. }
  7280. //栏目缓存
  7281. function GetClass(){
  7282. global $empire,$dbtbpre;
  7283. $fileqz=eReturnTrueEcmsPath().'e/data/dbcache/';
  7284. $filename=$fileqz.'class.php';
  7285. $line=250;//每个文件存放栏目数
  7286. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsclass");
  7287. $sql=$empire->query("select * from {$dbtbpre}enewsclass");
  7288. $no=0;
  7289. $p=0;
  7290. $l="";
  7291. $mod=array();
  7292. $modstr=",";
  7293. while($r=$empire->fetch($sql))
  7294. {
  7295. $no++;
  7296. $l="";
  7297. if($r[wburl])//外部栏目
  7298. {
  7299. $l=",
  7300. 'wburl'=>'".addslashes($r[wburl])."'";
  7301. }
  7302. elseif($r[islast])//终极栏目
  7303. {
  7304. //组合模型
  7305. if(empty($mod[$r[modid]]))
  7306. {
  7307. $mod[$r[modid]]="|";
  7308. }
  7309. $mod[$r[modid]].=$r[classid]."|";
  7310. if(!strstr($modstr,",".$r[modid].","))
  7311. {
  7312. $modstr.=$r[modid].",";
  7313. }
  7314. $l=",
  7315. 'lencord'=>".$r[lencord].",".ReturnEmptyFCache('link_num',$r[link_num],1)."
  7316. 'newstempid'=>".$r[newstempid].",".ReturnEmptyFCache('oneinfo',$r[oneinfo],1)."
  7317. 'listtempid'=>".$r[listtempid].",".ReturnEmptyFCache('pltempid',$r[pltempid],1)."
  7318. ".ReturnEmptyFCache('newspath',$r[newspath],0).ReturnEmptyFCache('filename',$r[filename],1)."
  7319. 'filetype'=>'".addslashes($r[filetype])."',".ReturnEmptyFCache('ipath',$r[ipath],0)."
  7320. ".ReturnEmptyFCache('openpl',$r[openpl],1).ReturnEmptyFCache('openadd',$r[openadd],1)."
  7321. ".ReturnEmptyFCache('groupid',$r[groupid],0).ReturnEmptyFCache('filename_qz',$r[filename_qz],0)."
  7322. 'checked'=>".$r[checked].",".ReturnEmptyFCache('wfid',$r[wfid],1)."
  7323. 'bname'=>'".addslashes($r[bname])."',".ReturnEmptyFCache('cgtoinfo',$r[cgtoinfo],1)."
  7324. ".ReturnEmptyFCache('showdt',$r[showdt],1).ReturnEmptyFCache('checkpl',$r[checkpl],1).ReturnEmptyFCache('keycid',$r[keycid],1)."
  7325. 'reorder'=>'".addslashes($r[reorder])."'";
  7326. }
  7327. else
  7328. {
  7329. //列表式
  7330. if($r[islist]==1&&empty($r[islast]))
  7331. {
  7332. $l=",
  7333. 'lencord'=>".$r[lencord].",
  7334. 'reorder'=>'".addslashes($r[reorder])."',
  7335. 'listtempid'=>".$r[listtempid];
  7336. }
  7337. elseif($r[listtempid])
  7338. {
  7339. $l=",
  7340. 'lencord'=>".$r[lencord].",
  7341. 'reorder'=>'".addslashes($r[reorder])."',
  7342. 'listtempid'=>".$r[listtempid];
  7343. }
  7344. }
  7345. if($r[dtlisttempid])
  7346. {
  7347. $l.=",
  7348. 'dtlisttempid'=>".$r[dtlisttempid];
  7349. }
  7350. $classes.="\$class_r[".$r[classid]."]=Array('classid'=>".$r[classid].",
  7351. 'bclassid'=>".$r[bclassid].",
  7352. 'classname'=>'".addslashes($r[classname])."',
  7353. 'sonclass'=>'".addslashes($r[sonclass])."',
  7354. 'featherclass'=>'".addslashes($r[featherclass])."',
  7355. 'islast'=>".$r[islast].",
  7356. 'classpath'=>'".addslashes($r[classpath])."',".ReturnEmptyFCache('searchtempid',$r[searchtempid],1)."
  7357. 'classtype'=>'".addslashes($r[classtype])."',".ReturnEmptyFCache('classurl',$r[classurl],0)."
  7358. ".ReturnEmptyFCache('maxnum',$r[maxnum],1).ReturnEmptyFCache('yhid',$r[yhid],1)."
  7359. 'down_num'=>".$r[down_num].",
  7360. 'online_num'=>".$r[online_num].",
  7361. 'islist'=>".$r[islist].",".ReturnEmptyFCache('listdt',$r[listdt],1)."
  7362. 'tid'=>".$r[tid].",
  7363. 'tbname'=>'".addslashes($r[tbname])."',
  7364. 'modid'=>".$r[modid].$l.");
  7365. ";
  7366. if($no%$line==0||($num%$line<>0&&$num==$no))
  7367. {
  7368. $p++;
  7369. $file="class".$p.".php";
  7370. $include.="require(ECMS_PATH.'e/data/dbcache/".$file."');\r\n";
  7371. $classes="<?php
  7372. ".$classes."?>";
  7373. WriteFiletext_n($fileqz.$file,$classes);
  7374. $classes="";
  7375. }
  7376. }
  7377. //-----专题缓存
  7378. $zsql=$empire->query("select * from {$dbtbpre}enewszt");
  7379. $zt="";
  7380. $zfile=$fileqz."ztclass.php";
  7381. while($zr=$empire->fetch($zsql))
  7382. {
  7383. $zt.="\$class_zr[".$zr[ztid]."]=Array('ztid'=>".$zr[ztid].",
  7384. 'ztname'=>'".addslashes($zr[ztname])."',
  7385. 'ztnum'=>".$zr[ztnum].",
  7386. 'listtempid'=>".$zr[listtempid].",
  7387. 'ztpath'=>'".addslashes($zr[ztpath])."',".ReturnEmptyFCache('pltempid',$r[pltempid],1)."
  7388. 'zttype'=>'".addslashes($zr[zttype])."',".ReturnEmptyFCache('zturl',$zr[zturl],0)."
  7389. 'islist'=>".$zr[islist].",".ReturnEmptyFCache('maxnum',$zr[maxnum],1)."
  7390. 'reorder'=>'".addslashes($zr[reorder])."',".ReturnEmptyFCache('yhid',$zr[yhid],1)."
  7391. 'tbname'=>'".addslashes($zr[tbname])."');
  7392. ";
  7393. }
  7394. $zt="<?php
  7395. ".$zt.GetTitleTypeCache()."?>";
  7396. WriteFiletext_n($zfile,$zt);
  7397. $include.="require(ECMS_PATH.'e/data/dbcache/ztclass.php');\r\n";
  7398. $include="<?php
  7399. ".AddCheckViewCode()."
  7400. \$class_r=array();
  7401. \$class_zr=array();
  7402. \$class_tr=array();
  7403. \$eyh_r=array();
  7404. ".$include."
  7405. ".GetYh()."
  7406. ?>";
  7407. WriteFiletext_n($filename,$include);
  7408. //组合模型
  7409. $er=explode(",",$modstr);
  7410. for($i=1;$i<count($er)-1;$i++)
  7411. {
  7412. $mid=$er[$i];
  7413. $usql=$empire->query("update {$dbtbpre}enewsmod set sonclass='".$mod[$mid]."' where mid='$mid'");
  7414. }
  7415. }
  7416. //标题分类缓存
  7417. function GetTitleTypeCache(){
  7418. global $empire,$dbtbpre;
  7419. $sql=$empire->query("select typeid,tname,mid,yhid,tpath,tid,tbname,listdt,ttype from {$dbtbpre}enewsinfotype");
  7420. while($r=$empire->fetch($sql))
  7421. {
  7422. $string.="\$class_tr[".$r[typeid]."]=Array('typeid'=>".$r[typeid].",
  7423. 'tname'=>'".addslashes($r[tname])."',
  7424. 'tpath'=>'".addslashes($r[tpath])."',
  7425. 'ttype'=>'".addslashes($r[ttype])."',
  7426. 'yhid'=>".$r[yhid].",
  7427. 'listdt'=>".$r[listdt].",
  7428. 'tbname'=>'".addslashes($r[tbname])."',
  7429. 'mid'=>".$r[mid].");
  7430. ";
  7431. }
  7432. return $string;
  7433. }
  7434. //全站搜索数据源缓存
  7435. function GetSearchAllTb(){
  7436. global $empire,$dbtbpre;
  7437. $file=eReturnTrueEcmsPath()."e/data/dbcache/SearchAllTb.php";
  7438. $sql=$empire->query("select tbname,titlefield,smalltextfield from {$dbtbpre}enewssearchall_load");
  7439. while($r=$empire->fetch($sql))
  7440. {
  7441. $tbs.="\$schalltb_r['".$r[tbname]."']=Array('tbname'=>'".addslashes($r[tbname])."',
  7442. 'titlefield'=>'".addslashes($r[titlefield])."',
  7443. 'smalltextfield'=>'".addslashes($r[smalltextfield])."');
  7444. ";
  7445. }
  7446. $tbs="<?php
  7447. //tbs
  7448. \$schalltb_r=array();
  7449. ".$tbs."
  7450. //tbs
  7451. ?>";
  7452. WriteFiletext_n($file,$tbs);
  7453. }
  7454. //-------------- moreport ----------------------
  7455. //网站访问端缓存
  7456. function GetMoreportCache(){
  7457. global $empire,$dbtbpre;
  7458. $sql=$empire->query("select * from {$dbtbpre}enewsmoreport");
  7459. $i=0;
  7460. while($r=$empire->fetch($sql))
  7461. {
  7462. $i++;
  7463. $moreports.="\$emoreport_r['".$r[pid]."']=Array('pid'=>'".$r[pid]."',
  7464. 'pname'=>'".addslashes($r[pname])."',
  7465. 'purl'=>'".addslashes($r[purl])."',
  7466. 'ppath'=>'".addslashes($r[ppath])."',
  7467. 'postpass'=>'".addslashes($r[postpass])."',
  7468. 'postfile'=>'".addslashes($r[postfile])."',
  7469. 'tempgid'=>'".addslashes($r[tempgid])."',
  7470. 'isclose'=>'".addslashes($r[isclose])."',
  7471. 'closeadd'=>'".addslashes($r[closeadd])."',
  7472. 'openadmin'=>'".addslashes($r[openadmin])."',
  7473. 'rehtml'=>'".addslashes($r[rehtml])."',
  7474. 'mustdt'=>'".$r[mustdt]."');
  7475. ";
  7476. }
  7477. if($i>1)
  7478. {
  7479. $moreports="
  7480. //moreports
  7481. \$emoreport_r=array();
  7482. ".$moreports."
  7483. //moreports
  7484. ";
  7485. }
  7486. else
  7487. {
  7488. $moreports="
  7489. //moreports
  7490. \$emoreport_r=array();
  7491. //moreports
  7492. ";
  7493. }
  7494. return $moreports;
  7495. }
  7496. //开启或关闭访问端信息
  7497. function Moreport_UpdateIsclose(){
  7498. global $empire,$dbtbpre,$public_r;
  7499. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmoreport where isclose=0");
  7500. if($num>1)
  7501. {
  7502. $purl=addslashes(eReturnDomainSiteUrl());
  7503. $ppath=addslashes(ReturnAbsEcmsPath());
  7504. $postpass=make_password(60);
  7505. $empire->query("update {$dbtbpre}enewsmoreport set purl='$purl',ppath='$ppath',postpass='$postpass',rehtml='3' where pid=1");
  7506. }
  7507. else
  7508. {
  7509. $postpass=make_password(60);
  7510. $empire->query("update {$dbtbpre}enewsmoreport set purl='',ppath='',postpass='$postpass',rehtml='0' where pid=1");
  7511. }
  7512. return $num;
  7513. }
  7514. //是否主访问端管理
  7515. function Moreport_CheckAdminIsMain(){
  7516. global $ecms_config;
  7517. if($ecms_config['sets']['selfmoreportid']>1)
  7518. {
  7519. printerror("NotMainMoreport","history.go(-1)");
  7520. }
  7521. }
  7522. //显示访问端
  7523. function Moreport_eReturnMoreportSelect($pid,$varname=''){
  7524. global $empire,$dbtbpre,$public_r,$ecms_config;
  7525. if(!$varname)
  7526. {
  7527. $varname='moreportid';
  7528. }
  7529. $pid=(int)$pid;
  7530. $selects='';
  7531. $sql=$empire->query("select * from {$dbtbpre}enewsmoreport order by pid");
  7532. while($r=$empire->fetch($sql))
  7533. {
  7534. if(!$r['purl'])
  7535. {
  7536. continue;
  7537. }
  7538. $selected='';
  7539. if($pid==$r['pid'])
  7540. {
  7541. $selected=' selected';
  7542. }
  7543. $selects.="<option value='".$r['pid']."'".$selected.">".$r['pname']."</option>";
  7544. }
  7545. $selects="<select name='".$varname."' id='".$varname."'>".$selects."</select>";
  7546. return $selects;
  7547. }
  7548. //处理接收访问端目录
  7549. function Moreport_hDoSetSelfPath($ecms=0){
  7550. $moreportpid=(int)$_GET['moreportpid'];
  7551. if(!$moreportpid)
  7552. {
  7553. $moreportpid=(int)$_POST['moreportpid'];
  7554. }
  7555. if($moreportpid)
  7556. {
  7557. Moreport_eSetSelfPath($moreportpid,$ecms);
  7558. }
  7559. return $moreportpid;
  7560. }
  7561. //返回moreport参数
  7562. function Moreport_ReturnUrlCsPid($pid,$ecms=0,$wh=0,$ycs=''){
  7563. $pid=(int)$pid;
  7564. if(!$pid)
  7565. {
  7566. return '';
  7567. }
  7568. if($ecms==1)
  7569. {
  7570. $cs="<input type=hidden name=moreportpid id=moreportpid value='$pid'>";
  7571. }
  7572. else
  7573. {
  7574. $and='&';
  7575. if($wh&&!$ycs)
  7576. {
  7577. $and='?';
  7578. }
  7579. $cs=$and.'moreportpid='.$pid;
  7580. }
  7581. return $cs;
  7582. }
  7583. ?>